-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
28 lines (26 loc) · 1.05 KB
/
Directory.Build.props
File metadata and controls
28 lines (26 loc) · 1.05 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
<Project>
<!-- Common properties for all projects -->
<PropertyGroup>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<!-- Missing XML comment for publicly visible type -->
</PropertyGroup>
<!-- Package metadata -->
<PropertyGroup>
<Authors>Moritz Reis</Authors>
<Company>SVNPathCopy</Company>
<Copyright>Copyright © 2019-2025 Moritz Reis</Copyright>
<RepositoryUrl>https://github.com/clFaster/SVNPathCopy</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
</PropertyGroup>
<!-- Version information -->
<PropertyGroup>
<VersionPrefix>2.0.0</VersionPrefix>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
</PropertyGroup>
</Project>