-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVersions.props
More file actions
29 lines (21 loc) · 1010 Bytes
/
Versions.props
File metadata and controls
29 lines (21 loc) · 1010 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>
<!-- Set the default version of the current product -->
<Import Project="MainVersion.props" />
<PropertyGroup>
<MyProductVersion>$(MainVersion)$(PackageVersionSuffix)</MyProductVersion>
<MyProductAssemblyVersion>$(MainVersion)</MyProductAssemblyVersion>
</PropertyGroup>
<!-- Set the default versions of dependencies -->
<PropertyGroup>
<PostSharpEngineeringVersion>2023.2.86</PostSharpEngineeringVersion>
</PropertyGroup>
<!-- Set the deafult versions of auto-updated dependencies -->
<Import Project="AutoUpdatedVersions.props" />
<!-- Override versions (both this product and dependencies) for the local build -->
<Import Project="Versions.g.props" Condition="Exists('Versions.g.props')" />
<PropertyGroup>
<AssemblyVersion>$(MyProductAssemblyVersion)</AssemblyVersion>
<Version>$(MyProductVersion)</Version>
<BuildDate>$(MyProductBuildDate)</BuildDate>
</PropertyGroup>
</Project>