-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathControllerCompatibility.csproj
More file actions
31 lines (27 loc) · 1.03 KB
/
ControllerCompatibility.csproj
File metadata and controls
31 lines (27 loc) · 1.03 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net462</TargetFramework>
<LangVersion>8.0</LangVersion>
<AssemblyTitle>Controller Compatibility Plugin</AssemblyTitle>
<Product>Controller Compatibility Plugin</Product>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<OutputType>Library</OutputType>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Management" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="WindowsBase" />
<Reference Include="Playnite.SDK">
<HintPath>$(LOCALAPPDATA)\Playnite\Playnite.SDK.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="XInputDotNetPure" Version="1.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>