-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
37 lines (34 loc) · 1.59 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<!-- Style Settings -->
<LangVersion>preview</LangVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>CA2254;CS1591,CA1305</NoWarn>
<UsePublicApiAnalyzers>true</UsePublicApiAnalyzers>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageProjectUrl>https://github.com/mickeygo/OpenThingsEdge</PackageProjectUrl>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!--<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>-->
<!-- Build Settings -->
<Configurations>Debug;Release</Configurations>
<Platforms>AnyCPU</Platforms>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<DebugType Condition="'$(Configuration)'=='Release'">pdbonly</DebugType>
<DebugSymbols>True</DebugSymbols>
<Deterministic>true</Deterministic>
<!-- Package Settings -->
<DebugType Condition="'$(Configuration)'=='Release'">pdbonly</DebugType>
<Optimize Condition="'$(Configuration)'=='Release'">true</Optimize>
<PackageOutputPath>$(SolutionDir)build_output\packages</PackageOutputPath>
<GeneratePackageOnBuild Condition="'$(Configuration)'=='Release'">True</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- Version Settings -->
<PackageVersion>0.12.0</PackageVersion>
<Version>$(PackageVersion)</Version>
<Authors>mickeygo</Authors>
</PropertyGroup>
</Project>