-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
49 lines (43 loc) · 1.76 KB
/
Directory.Build.props
File metadata and controls
49 lines (43 loc) · 1.76 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
45
46
47
48
49
<Project>
<PropertyGroup>
<IsPackable>false</IsPackable>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Found no other way to resolve the following warning than disable it -->
<NoWarn>NU1507</NoWarn>
<WriteVersionInfoToBuildLog>false</WriteVersionInfoToBuildLog>
</PropertyGroup>
<PropertyGroup>
<!-- Enable Build Acceleration in Visual Studio. -->
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<!--
If you target a framework earlier than .NET 5 (including .NET Framework and .NET Standard),
you should set ProduceReferenceAssembly to true in order to speed incremental builds.
If you multi-target and any target is before .NET 5, you need this.
Even if you target .NET 5 or later, having this property is fine.
-->
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<DefaultItemExcludes>*.ncrunchproject;*.DotSettings</DefaultItemExcludes>
<Product>PDFsharp</Product>
<Company>empira Software</Company>
<Copyright>© 2025 empira</Copyright>
<Authors>PDFsharp Team</Authors>
<Owners>empira Software GmbH</Owners>
</PropertyGroup>
<PropertyGroup>
<UpdateAssemblyInfo>false</UpdateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition="'$(NCrunch)' == '1'">
<DisableGitVersionTask>true</DisableGitVersionTask>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GitVersion.MsBuild">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>