-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEMotion.csproj
More file actions
29 lines (24 loc) · 808 Bytes
/
EMotion.csproj
File metadata and controls
29 lines (24 loc) · 808 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<Platforms>AnyCPU;x64</Platforms>
<AssemblyVersion>1.0.0.16</AssemblyVersion>
<FileVersion>1.0.0.16</FileVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="icon.png" />
<None Remove="res\img\add.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HandyControl" Version="3.4.0" />
<PackageReference Include="Nefarius.ViGEm.Client" Version="1.21.256" />
<PackageReference Include="System.IO.Hashing" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="icon.png" />
<Resource Include="res\img\add.png" />
</ItemGroup>
</Project>