Skip to content

Commit 0a0d9fd

Browse files
committedDec 20, 2023
Commit lock files for packages, second attempt
1 parent fdeb082 commit 0a0d9fd

File tree

8 files changed

+6299
-1
lines changed

8 files changed

+6299
-1
lines changed
 

‎.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ x64/
6262
.vs/
6363

6464
# dotnet
65-
*.lock.json
6665
artifacts/
6766

6867
# MSTest test Results

‎appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ build_script:
4444
- cmd: powershell Import-Module ServerManager; Add-WindowsFeature MSMQ; net start msmq
4545
- ps: IF ($env:APPVEYOR_SCHEDULED_BUILD -or $env:APPVEYOR_REPO_COMMIT_MESSAGE -like "*covscan*") { .\coverity-scan.ps1 }
4646
- cmd: IF NOT DEFINED APPVEYOR_SCHEDULED_BUILD build.bat ci
47+
- sh: nuget locals all -clear
4748
- sh: chmod +x build.sh; ./build.sh
4849

4950
#---------------------------------#

‎src/Directory.Build.props

+10
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,14 @@
1919
<AnalysisMode>Recommended</AnalysisMode>
2020
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2121
</PropertyGroup>
22+
23+
<PropertyGroup>
24+
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
25+
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
26+
</PropertyGroup>
27+
28+
<PropertyGroup Condition="'$(APPVEYOR)' == 'True'">
29+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
30+
<RestoreLockedMode>true</RestoreLockedMode>
31+
</PropertyGroup>
2232
</Project>

‎src/Hangfire.AspNetCore/packages.lock.json

+2,264
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)