mirror of
https://github.com/chev2/botw-toolset.git
synced 2025-10-29 15:52:19 +00:00
47 lines
1.6 KiB
XML
47 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<ApplicationIcon>appicon.ico</ApplicationIcon>
|
|
<AssemblyVersion>0.1.0.0</AssemblyVersion>
|
|
<Version>0.1.0-pre-alpha</Version>
|
|
<Authors>Chev</Authors>
|
|
<StartupObject>BOTWToolset.App</StartupObject>
|
|
<FileVersion>0.1.0.0</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove=".gitignore" />
|
|
<None Remove="CONTRIBUTING.md" />
|
|
<None Remove="LICENSE" />
|
|
<None Remove="README.md" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft-WindowsAPICodePack-Core" Version="1.1.4" />
|
|
<PackageReference Include="Microsoft-WindowsAPICodePack-Shell" Version="1.1.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="appicon.ico" />
|
|
<Resource Include="Resources\Icons\document.png" />
|
|
<Resource Include="Resources\Icons\letter-z.png" />
|
|
<Resource Include="Resources\Icons\mountain.png" />
|
|
<Resource Include="Resources\Icons\package.png" />
|
|
<Resource Include="Resources\Icons\speaker.png" />
|
|
<Resource Include="Resources\Icons\text-file-2.png" />
|
|
<Resource Include="Resources\Icons\text-file.png" />
|
|
<Resource Include="Resources\Icons\triforce.png" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|