-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dylan Bickerstaff
committed
Jun 28, 2024
1 parent
586e6ac
commit 6b9d32b
Showing
3 changed files
with
109 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,140 +1,111 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\CommonProperties.xml" /> | ||
<PropertyGroup> | ||
<TargetFramework>net7.0-windows10.0.17763.0</TargetFramework> | ||
<OutputType>WinExe</OutputType> | ||
<UseWindowsForms>true</UseWindowsForms> | ||
<UseWPF>true</UseWPF> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
<NoWarn>1701;1702;WFAC010</NoWarn> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
<NoWarn>1701;1702;WFAC010</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="48.png" /> | ||
<None Remove="Resources\banner.png" /> | ||
<None Remove="Resources\explorer.png" /> | ||
<None Remove="Resources\logo_16.png" /> | ||
<None Remove="Resources\logo_256.png" /> | ||
<None Remove="Resources\logo_explorer_divot.png" /> | ||
<None Remove="Resources\noise.png" /> | ||
<None Remove="Resources\run.png" /> | ||
<None Remove="Resources\SegoeIcons.ttf" /> | ||
<None Remove="Resources\segoeui.ttf" /> | ||
<None Remove="Resources\shield.png" /> | ||
<None Remove="Resources\shortcut.png" /> | ||
<None Remove="Resources\SuperLauncherIcons.ttf" /> | ||
<None Remove="sl_logo_big.png" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<COMReference Include="IWshRuntimeLibrary"> | ||
<WrapperTool>tlbimp</WrapperTool> | ||
<VersionMinor>0</VersionMinor> | ||
<VersionMajor>1</VersionMajor> | ||
<Guid>f935dc20-1cf0-11d0-adb9-00c04fd58a0b</Guid> | ||
<Lcid>0</Lcid> | ||
<Isolated>false</Isolated> | ||
<EmbedInteropTypes>true</EmbedInteropTypes> | ||
</COMReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" /> | ||
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="7.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\SuperLauncherCommon\SuperLauncherCommon.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Resource Include="Resources\banner.png" /> | ||
<Resource Include="Resources\explorer.png" /> | ||
<Resource Include="Resources\logo_16.png" /> | ||
<Resource Include="Resources\logo_256.png" /> | ||
<Resource Include="Resources\logo_explorer_divot.png" /> | ||
<Resource Include="Resources\noise.png" /> | ||
<Resource Include="Resources\run.png" /> | ||
<Resource Include="Resources\SegoeIcons.ttf"> | ||
<CopyToOutputDirectory>Never</CopyToOutputDirectory> | ||
</Resource> | ||
<Resource Include="Resources\SegoeUI.ttf"> | ||
<CopyToOutputDirectory>Never</CopyToOutputDirectory> | ||
</Resource> | ||
<Resource Include="Resources\shield.png" /> | ||
<Resource Include="Resources\shortcut.png" /> | ||
<Resource Include="Resources\SuperLauncherIcons.ttf"> | ||
<CopyToOutputDirectory>Never</CopyToOutputDirectory> | ||
</Resource> | ||
<Content Include="48.png"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
<Content Include="sl_logo_big.png"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Update="Launcher.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="Launcher.Designer.cs"> | ||
<DependentUpon>Launcher.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Resources.Designer.cs"> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
</Compile> | ||
<Compile Update="SettingsForm.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="SettingsForm.Designer.cs"> | ||
<DependentUpon>SettingsForm.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="ShellHost.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="ShellHost.Designer.cs"> | ||
<DependentUpon>ShellHost.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="ShellView.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="ShellView.Designer.cs"> | ||
<DependentUpon>ShellView.cs</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Update="Launcher.resx"> | ||
<DependentUpon>Launcher.cs</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="Resources.resx"> | ||
<SubType>Designer</SubType> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="SettingsForm.resx"> | ||
<DependentUpon>SettingsForm.cs</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="ShellHost.resx"> | ||
<DependentUpon>ShellHost.cs</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="ShellView.resx"> | ||
<DependentUpon>ShellView.cs</DependentUpon> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Page Update="ModernLauncherContextMenuIcon.xaml"> | ||
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime> | ||
</Page> | ||
</ItemGroup> | ||
|
||
<Import Project="..\CommonProperties.xml" /> | ||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<UseWindowsForms>true</UseWindowsForms> | ||
<UseWPF>true</UseWPF> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
<NoWarn>1701;1702;WFAC010</NoWarn> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
<NoWarn>1701;1702;WFAC010</NoWarn> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<AdditionalFiles Remove="app.manifest" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Remove="48.png" /> | ||
<None Remove="Resources\banner.png" /> | ||
<None Remove="Resources\explorer.png" /> | ||
<None Remove="Resources\logo_16.png" /> | ||
<None Remove="Resources\logo_256.png" /> | ||
<None Remove="Resources\logo_explorer_divot.png" /> | ||
<None Remove="Resources\noise.png" /> | ||
<None Remove="Resources\run.png" /> | ||
<None Remove="Resources\SegoeIcons.ttf" /> | ||
<None Remove="Resources\segoeui.ttf" /> | ||
<None Remove="Resources\shield.png" /> | ||
<None Remove="Resources\shortcut.png" /> | ||
<None Remove="Resources\SuperLauncherIcons.ttf" /> | ||
<None Remove="sl_logo_big.png" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\SuperLauncherCommon\SuperLauncherCommon.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Resource Include="Resources\banner.png" /> | ||
<Resource Include="Resources\explorer.png" /> | ||
<Resource Include="Resources\logo_16.png" /> | ||
<Resource Include="Resources\logo_256.png" /> | ||
<Resource Include="Resources\logo_explorer_divot.png" /> | ||
<Resource Include="Resources\noise.png" /> | ||
<Resource Include="Resources\run.png" /> | ||
<Resource Include="Resources\SegoeIcons.ttf"> | ||
<CopyToOutputDirectory>Never</CopyToOutputDirectory> | ||
</Resource> | ||
<Resource Include="Resources\SegoeUI.ttf"> | ||
<CopyToOutputDirectory>Never</CopyToOutputDirectory> | ||
</Resource> | ||
<Resource Include="Resources\shield.png" /> | ||
<Resource Include="Resources\shortcut.png" /> | ||
<Resource Include="Resources\SuperLauncherIcons.ttf"> | ||
<CopyToOutputDirectory>Never</CopyToOutputDirectory> | ||
</Resource> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Update="Launcher.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="Launcher.Designer.cs"> | ||
<DependentUpon>Launcher.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Resources.Designer.cs"> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
</Compile> | ||
<Compile Update="SettingsForm.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="SettingsForm.Designer.cs"> | ||
<DependentUpon>SettingsForm.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="ShellHost.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="ShellHost.Designer.cs"> | ||
<DependentUpon>ShellHost.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="ShellView.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Update="ShellView.Designer.cs"> | ||
<DependentUpon>ShellView.cs</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Update="Launcher.resx"> | ||
<DependentUpon>Launcher.cs</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="Resources.resx"> | ||
<SubType>Designer</SubType> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="SettingsForm.resx"> | ||
<DependentUpon>SettingsForm.cs</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="ShellHost.resx"> | ||
<DependentUpon>ShellHost.cs</DependentUpon> | ||
</EmbeddedResource> | ||
<EmbeddedResource Update="ShellView.resx"> | ||
<DependentUpon>ShellView.cs</DependentUpon> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Page Update="ModernLauncherContextMenuIcon.xaml"> | ||
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime> | ||
</Page> | ||
</ItemGroup> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters