-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (19 loc) · 938 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
22 lines (19 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<!--
Version is owned by the git tag, not by this file. CI derives it from the ref and passes
/p:Version + /p:InformationalVersion to `dotnet publish` (the Docker build context excludes
.git, so nothing tag-based can run inside the image build). The value below is only what a
local `dotnet build` gets, and the -dev suffix is the tell that a binary was not built by CI.
-->
<PropertyGroup>
<Version>0.0.0-dev</Version>
<Product>Maki</Product>
<Company>Maki</Company>
<!--
The SDK otherwise appends ".<full-sha>" to InformationalVersion of its own accord, which
would double up the "+<commit>" build metadata CI already sets and leave VersionInfo.Commit
holding two shas. Turn it off so what CI passes is the authoritative value.
-->
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
</PropertyGroup>
</Project>