-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
27 lines (26 loc) · 1.16 KB
/
Directory.Build.props
File metadata and controls
27 lines (26 loc) · 1.16 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
<Project>
<PropertyGroup>
<Product>WLED.NET</Product>
<Copyright>Copyright 2020 Kevsoft</Copyright>
<Authors>Kevin Smith</Authors>
<RepositoryUrl>https://github.com/kevbite/WLED.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/kevbite/WLED.NET</PackageProjectUrl>
<LangVersion>latest</LangVersion>
<LibraryTargetFrameworks>netstandard2.0;net8.0;net9.0;net10.0</LibraryTargetFrameworks>
<TestTargetFrameworks>net8.0;net9.0;net10.0</TestTargetFrameworks>
<SampleTargetFramework>net10.0</SampleTargetFramework>
<nullable>enable</nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>CS1591;MSB4018</NoWarn>
<DebugSymbols>True</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Text" />
<Using Include="System.Text.Json" />
<Using Include="System.Net.Http.Json" />
<Using Include="System.Text.Json.Serialization" />
</ItemGroup>
</Project>