Skip to content

Commit b99a6a8

Browse files
authored
Produce deterministic CI builds
This is a squashed merge or PR #975 that closes #973.
1 parent b68deb6 commit b99a6a8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

MoreLinq/MoreLinq.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,10 @@
148148
</PropertyGroup>
149149

150150
<ItemGroup>
151+
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1">
152+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
153+
<PrivateAssets>all</PrivateAssets>
154+
</PackageReference>
151155
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3">
152156
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
153157
<PrivateAssets>all</PrivateAssets>

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ after_build:
8585
}
8686
- ps: |
8787
dir dist\*.nupkg | % {
88-
dotnet meziantou.validate-nuget-package --excluded-rules IconMustBeSet,Symbols $_
88+
dotnet meziantou.validate-nuget-package --excluded-rules IconMustBeSet $_
8989
if ($LASTEXITCODE) {
9090
throw "Package validation failed: $_"
9191
}

0 commit comments

Comments
 (0)