Skip to content

Commit f732ef3

Browse files
authored
Consider tagged refs as public releases (#13)
* Consider tagged refs as public releases * Also sign signing for SharedCompilation package
1 parent 7f2aa10 commit f732ef3

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/SharedCompilation/Microsoft.MSBuildCache.SharedCompilation.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,9 @@
2020
<PackagePath>buildMultiTargeting\</PackagePath>
2121
</None>
2222
</ItemGroup>
23+
<!-- Signing -->
24+
<ItemGroup>
25+
<FilesToSign Include="$(TargetPath)" Authenticode="Microsoft400" StrongName="StrongName" />
26+
</ItemGroup>
2327
<Import Project="$(RepoRoot)build\MSBuildExtensionPackage.targets" />
2428
</Project>

version.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
// For historical reasons, use a specific offset. Reset to -1 when bumping the version above.
55
"buildNumberOffset": 204,
66
"publicReleaseRefSpec": [
7-
"^refs/heads/main$"
7+
"^refs/heads/main$",
8+
"^refs/tags/v\\d+\\.\\d+\\.\\d+"
89
],
910
"inherit": false
1011
}

0 commit comments

Comments
 (0)