-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathArtemis.Plugins.Devices.Wooting.csproj
More file actions
44 lines (37 loc) · 1.5 KB
/
Artemis.Plugins.Devices.Wooting.csproj
File metadata and controls
44 lines (37 loc) · 1.5 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
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-windows</TargetFramework>
<Platforms>x64</Platforms>
<EnableDynamicLoading>true</EnableDynamicLoading>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="WootingAnalogSDK.NET" Version="0.5.0" />
</ItemGroup>
<ItemGroup>
<Content Include="Layouts\**" CopyToOutputDirectory="PreserveNewest" />
<Content Include="x64\**" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<Content Include="plugin.json" CopyToOutputDirectory="PreserveNewest" />
<PackageReference Include="ArtemisRGB.Plugins.BuildTask" Version="2.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Reference Include="RGB.NET.Devices.Wooting">
<HintPath>..\..\..\..\RGB.NET\bin\net9.0\RGB.NET.Devices.Wooting.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.31.1" />
<PackageReference Include="Grpc.Net.Client" Version="2.71.0" />
<PackageReference Include="Grpc.Tools" Version="2.72.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Protobuf Include="wooting_analog_sdk.proto" GrpcServices="Client" />
</ItemGroup>
</Project>