forked from OpenTabletDriver/OpenTabletDriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenTabletDriver.Configurations.csproj
31 lines (24 loc) · 1.19 KB
/
OpenTabletDriver.Configurations.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Project Properties">
<TargetFrameworks>$(FrameworkLTS);$(FrameworkLatest)</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoWarn>VSTHRD100; VSTHRD101; VSTHRD110; VSTHRD200</NoWarn>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Label="NuGet Package">
<PackageId>OpenTabletDriver.Configurations</PackageId>
<Description>OpenTabletDriver tablet configurations</Description>
<IsPackable>true</IsPackable>
</PropertyGroup>
<ItemGroup Label="NuGet Packages">
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup Label="Project References">
<ProjectReference Include="..\OpenTabletDriver\OpenTabletDriver.csproj" />
<ProjectReference Include="..\OpenTabletDriver.Analyzers\OpenTabletDriver.Analyzers.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" PrivateAssets="all" />
</ItemGroup>
<ItemGroup Label="Configurations">
<AdditionalFiles Include=".\Configurations\**\*.json" TabletConfiguration="true" />
</ItemGroup>
<Import Project="..\OpenTabletDriver.Analyzers\TabletConfigurationGenerator.props" />
</Project>