-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
31 lines (28 loc) · 1.43 KB
/
Directory.Build.props
File metadata and controls
31 lines (28 loc) · 1.43 KB
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
<Project>
<PropertyGroup>
<Product>Cronos</Product>
<Company>Hangfire OÜ</Company>
<Copyright>Copyright © 2016-2025 Hangfire OÜ</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Cronos.snk</AssemblyOriginatorKeyFile>
<LangVersion>9.0</LangVersion>
<NuGetAuditMode>direct</NuGetAuditMode>
</PropertyGroup>
<PropertyGroup Condition="'$(APPVEYOR)' != ''">
<RestoreLockedMode>true</RestoreLockedMode>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<!-- Deterministic paths work bad when using ILRepack, because it combines everything with a wrong repository -->
<DeterministicSourcePaths>false</DeterministicSourcePaths>
<BuildNumber>$(APPVEYOR_BUILD_NUMBER)</BuildNumber>
</PropertyGroup>
<PropertyGroup>
<VersionPrefix>0.11.2</VersionPrefix>
<BuildNumber Condition="'$(BuildNumber)' == ''">0</BuildNumber>
<FileVersion>$([System.Version]::Parse("$(VersionPrefix)").ToString(3)).$(BuildNumber)</FileVersion>
<AssemblyVersion>$([System.Version]::Parse("$(VersionPrefix)").ToString(1)).0.0.0</AssemblyVersion>
</PropertyGroup>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
</PropertyGroup>
</Project>