-
Notifications
You must be signed in to change notification settings - Fork 7
/
Directory.Build.props
29 lines (25 loc) · 1.53 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
25
26
27
28
29
<Project>
<PropertyGroup>
<VersionPrefix Condition="'$(APPVEYOR_REPO_TAG_NAME)' != ''">$(APPVEYOR_REPO_TAG_NAME)</VersionPrefix>
<VersionPrefix Condition="'$(VersionPrefix)' == ''">2.0</VersionPrefix>
<VersionSuffix Condition="'$(CI)' == ''">local</VersionSuffix>
<VersionSuffix Condition="'$(CI)' != '' AND '$(APPVEYOR_REPO_TAG_NAME)' == ''">ci.$(APPVEYOR_BUILD_NUMBER)</VersionSuffix>
<Authors>jkoritzinsky</Authors>
<Copyright>(c) 2018 Jeremy Koritzinsky</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/SharpGenTools/SharpGen.Runtime.COM</PackageProjectUrl>
<Tags>SharpGen;Native;COM</Tags>
<RepositoryUrl>https://github.com/SharpGenTools/SharpGen.Runtime.COM</RepositoryUrl>
<LangVersion>9</LangVersion>
<SignAssembly Condition="'$(SignAssembly)' == ''">true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)SharpGenTools.snk</AssemblyOriginatorKeyFile>
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<SharpGenVersion>2.0.0-beta.9</SharpGenVersion>
</PropertyGroup>
</Project>