-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathWootingAnalogSDK.NET.csproj
executable file
·67 lines (56 loc) · 3.44 KB
/
WootingAnalogSDK.NET.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Company>Wooting</Company>
<PackageVersion>0.5.0</PackageVersion>
<Authors>Wooting</Authors>
<Description>.NET Wrapper for the new Wooting Analog SDK</Description>
<PackageProjectUrl>https://github.com/WootingKb/wooting-analog-wrappers</PackageProjectUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<RepositoryUrl>https://github.com/WootingKb/wooting-analog-wrappers</RepositoryUrl>
<RootNamespace>WootingAnalogSDKNET</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
</ItemGroup>
<PropertyGroup>
<IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'True'">True</IsWindows>
<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'True'">True</IsLinux>
<IsMac Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'True'">True</IsMac>
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<Content CopyToOutputDirectory="PreserveNewest" Pack="true" Include="..\libs\linux-x64\libwooting_analog_wrapper.so" Link="runtimes/linux-x64/native/libwooting_analog_wrapper.so">
<PackagePath>runtimes/linux-x64/native</PackagePath>
</Content>
<Content CopyToOutputDirectory="PreserveNewest" Pack="true" Include="..\libs\win-x64\wooting_analog_wrapper.dll" Link="runtimes/win-x64/native/wooting_analog_wrapper.dll">
<PackagePath>runtimes/win-x64/native</PackagePath>
</Content>
<Content CopyToOutputDirectory="PreserveNewest" Pack="true" Include="..\libs\osx-x64\libwooting_analog_wrapper.dylib" Link="runtimes/osx-x64/native/libwooting_analog_wrapper.dylib">
<PackagePath>runtimes/osx-x64/native</PackagePath>
</Content>
<Content Include="..\libs\win-x64\wooting_analog_wrapper.dll" Link="wooting_analog_wrapper.dll">
<Pack>true</Pack>
<PackagePath>content/net461;contentFiles/any/net461</PackagePath>
<PackageCopyToOutput>true</PackageCopyToOutput>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net461'">
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<!--<ItemGroup Condition="'$(IsPublicBuild)' == '' AND $(IsLinux) == 'True'">
<Content Include="..\libs\linux-x64\libwooting_analog_wrapper.so" Link="runtimes/linux-x64/native/libwooting_analog_wrapper.so">
<PackagePath>runtimes/linux-x64/native</PackagePath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition="'$(IsPublicBuild)' == '' AND $(IsMac) == 'True'">
<Content Include="..\libs\mac-x64\libwooting_analog_wrapper.dylib" Link="runtimes/mac-x64/native/libwooting_analog_wrapper.dylib">
<PackagePath>runtimes/mac-x64/native</PackagePath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>-->
</Project>