-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
44 lines (41 loc) · 1.91 KB
/
Directory.Build.props
File metadata and controls
44 lines (41 loc) · 1.91 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
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="NuspecSettings">
<Company>ZeidLabCo</Company>
<Authors>Zeid Youssefzadeh</Authors>
<Copyright>Copyright © $(Company) $([System.DateTime]::Now.Year)</Copyright>
<Trademark>$(Company)™</Trademark>
<Product>$(Company) Projects</Product>
<NeutralLanguage>en</NeutralLanguage> <!-- The default language of the package -->
</PropertyGroup>
<PropertyGroup>
<OrganizationPrefix>ZeidLab.ToolBox</OrganizationPrefix>
<ProductGroupName>EasyPersistence</ProductGroupName>
<RootNamespace>$(OrganizationPrefix).$(ProductGroupName).$(MSBuildProjectName)</RootNamespace>
<AssemblyName>$(RootNamespace)</AssemblyName>
</PropertyGroup>
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latestmajor</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Optimize>True</Optimize>
<!-- This does not make sense at all -->
<NoWarn>NU1900,NU5128</NoWarn>
<!-- <NoError>$(NoError)</NoError>-->
<AccelerateBuildsInVisualStudio>True</AccelerateBuildsInVisualStudio>
</PropertyGroup>
<PropertyGroup Label="Main project properties only"
Condition="$(MSBuildProjectDirectory.StartsWith('$(MSBuildThisFileDirectory)src\'))">
<AnalysisLevel>latest</AnalysisLevel>
<RunAnalyzersDuringBuild>True</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>True</RunAnalyzersDuringLiveAnalysis>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<CodeAnalysisTreatWarningsAsErrors>True</CodeAnalysisTreatWarningsAsErrors>
<ReportAnalyzer>True</ReportAnalyzer>
<Deterministic>True</Deterministic>
<Features>strict</Features>
</PropertyGroup>
</Project>