forked from iwubcode/DolphinDynamicInputTextureCreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DolphinDynamicInputTextureCreator.csproj
50 lines (45 loc) · 1.75 KB
/
DolphinDynamicInputTextureCreator.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
48
49
50
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Authors>iwubcode, Venomalia</Authors>
<Company />
<Product>Dolphin</Product>
<Description>A tool for creating dynamic input texture packages for the Dolphin emulator</Description>
<Version>2021.10.19-0</Version>
<PackageProjectUrl />
<RepositoryUrl>https://github.com/iwubcode/DolphinDynamicInputTextureCreator</RepositoryUrl>
<AssemblyVersion>2021.10.19.0</AssemblyVersion>
<FileVersion>2021.10.19.0</FileVersion>
<ApplicationIcon>DynamicInputTextureCreator.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="Design\Images\a.png" />
<None Remove="Design\Images\b.png" />
<None Remove="Design\Images\c.png" />
<None Remove="Design\Images\d.png" />
<None Remove="Design\Images\tex1_1024x1024_abcdef_1.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
<ItemGroup>
<Resource Include="Design\Images\a.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Design\Images\b.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Design\Images\c.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Design\Images\d.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Design\Images\tex1_1024x1024_abcdef_1.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
</ItemGroup>
</Project>