-
Notifications
You must be signed in to change notification settings - Fork 1
/
BOTWToolset.csproj
47 lines (40 loc) · 1.59 KB
/
BOTWToolset.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<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>