forked from jingyiliu/CefNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
39 lines (39 loc) · 2 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
30
31
32
33
34
35
36
37
38
39
<Project>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CodeAnalysisRuleSet>$(SolutionDir)Debug.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSet Condition="!Exists($(CodeAnalysisRuleSet))">Debug.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSet Condition="!Exists($(CodeAnalysisRuleSet))">../Debug.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration) != 'Nuget_Release'">
<VersionSuffix>dev</VersionSuffix>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Nuget_Release'">
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup>
<CefVersion>105.3</CefVersion>
<VersionBuild>$([System.DateTime]::UtcNow.ToString(yy))$([System.DateTime]::UtcNow.DayOfYear.ToString(000))</VersionBuild>
<VersionRevision>$([System.DateTime]::UtcNow.ToString(HH))$([System.Convert]::ToUInt16($([MSBuild]::Divide($([System.DateTime]::UtcNow.Minute),5))))</VersionRevision>
<VersionPrefix>$(CefVersion).$(VersionBuild).$(VersionRevision)</VersionPrefix>
<AssemblyOriginatorKeyFile>../cefnet.snk</AssemblyOriginatorKeyFile>
<SignAssembly Condition="Exists($(AssemblyOriginatorKeyFile))">true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>The CefNet Authors</Authors>
<PackageProjectUrl>https://github.com/cefnet</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/cefnet/cefnet</RepositoryUrl>
<NeutralLanguage>en</NeutralLanguage>
<PackageReleaseNotes>
CEF v.$(CefVersion).*.
Binary packages are available for download at:
https://cef-builds.spotifycdn.com/index.html
</PackageReleaseNotes>
</PropertyGroup>
</Project>