From b99a6a8cc504caf2d48372fe54a2f8116c59cd0c Mon Sep 17 00:00:00 2001 From: Atif Aziz Date: Tue, 28 Feb 2023 05:31:40 +0100 Subject: [PATCH] Produce deterministic CI builds This is a squashed merge or PR #975 that closes #973. --- MoreLinq/MoreLinq.csproj | 4 ++++ appveyor.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/MoreLinq/MoreLinq.csproj b/MoreLinq/MoreLinq.csproj index a3e52f179..c48c91587 100644 --- a/MoreLinq/MoreLinq.csproj +++ b/MoreLinq/MoreLinq.csproj @@ -148,6 +148,10 @@ + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + runtime; build; native; contentfiles; analyzers all diff --git a/appveyor.yml b/appveyor.yml index e213363c0..24f73d208 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -85,7 +85,7 @@ after_build: } - ps: | dir dist\*.nupkg | % { - dotnet meziantou.validate-nuget-package --excluded-rules IconMustBeSet,Symbols $_ + dotnet meziantou.validate-nuget-package --excluded-rules IconMustBeSet $_ if ($LASTEXITCODE) { throw "Package validation failed: $_" }