-
Notifications
You must be signed in to change notification settings - Fork 17
/
Directory.Build.Props
24 lines (21 loc) · 1.03 KB
/
Directory.Build.Props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project>
<PropertyGroup>
<Authors>Claire Novotny</Authors>
<Copyright>Copyright (C) Claire Novotny</Copyright>
<Description>Enables NuGet package signing using certificates in Azure Key Vault</Description>
<PackageTags>authenticode;key-vault;nuget</PackageTags>
<PackageProjectUrl>https://github.com/novotnyllc/NuGetKeyVaultSignTool</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageOutputPath>$(MSBuildThisFileDirectory)artifacts\</PackageOutputPath>
<DebugType>embedded</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.4.244" PrivateAssets="all" />
</ItemGroup>
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>