-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
29 lines (25 loc) · 902 Bytes
/
Directory.Build.props
File metadata and controls
29 lines (25 loc) · 902 Bytes
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
<Project>
<PropertyGroup>
<major>1</major>
<minor>0</minor>
<patch>0</patch>
</PropertyGroup>
<PropertyGroup>
<!-- Set versions for all projects. Avoids warnings from non-preview projects referencing preview projects -->
<!-- package version of Gexcomx -->
<VersionPrefix>$(major).$(minor).$(patch)</VersionPrefix>
<!-- assembly version of Gexcomx -->
<AssemblyVersion>$(major).0.0.0</AssemblyVersion>
<!-- file version of all Gexcomx -->
<FileVersion>$(major).$(minor).0.0</FileVersion>
</PropertyGroup>
<PropertyGroup>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
</PropertyGroup>
<PropertyGroup>
<Company>FamilySearch</Company>
<projectUrl>https://github.com/FamilySearch/gedcomx-csharp</projectUrl>
<Copyright>Copyright (c) $(Company) 2014</Copyright>
</PropertyGroup>
</Project>