-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
53 lines (45 loc) · 1.94 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Project>
<PropertyGroup>
<IsPublishable>false</IsPublishable>
<NuGetAudit>true</NuGetAudit>
<Nullable>enable</Nullable>
<OutputType>library</OutputType>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<NoWarn>NU1507;NU5104</NoWarn>
</PropertyGroup>
<PropertyGroup Label="Diagnostics">
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<PropertyGroup>
<Title>Qowaiv Code Generation</Title>
<Description>
Qowaiv is a (Single) Value Object library. It aims to model reusable (Single)
Value Objects that can be used in a wide variety of modeling scenarios, both
inside and outside a Domain-driven context.
</Description>
<Authors>Corniel Nobel</Authors>
<Owners>Qowaiv community</Owners>
<PackageTags>Code Generation</PackageTags>
<Company>Qowaiv community</Company>
<Copyright>Copyright © Qowaiv community 2022-current</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<LangVersion>12.0</LangVersion>
</PropertyGroup>
<ItemGroup Label="Analyzer configuration">
<GlobalAnalyzerConfigFiles Include="../../analyzers-config.ini" />
</ItemGroup>
<ItemGroup Label="Analyzers">
<PackageReference Include="AsyncFixer" PrivateAssets="all" />
<PackageReference Include="DotNetProjectFile.Analyzers" PrivateAssets="all" />
<PackageReference Include="IDisposableAnalyzers" PrivateAssets="all" />
<PackageReference Include="SonarAnalyzer.CSharp" PrivateAssets="all" />
</ItemGroup>
<ItemGroup Label="Code generators">
<PackageReference Include="PolySharp" PrivateAssets="all" />
<PackageReference Include="Qowaiv.Diagnostics.Contracts" PrivateAssets="all" />
</ItemGroup>
<ItemGroup Label="Additional files">
<AdditionalFiles Include="*.csproj" Visible="false" />
<AdditionalFiles Include="../../Directory.Build.props" Link="Properties/Directory.Build.props" />
</ItemGroup>
</Project>