diff --git a/.github/workflows/pr_ci.yml b/.github/workflows/pr_ci.yml index 718ae2e6222..fe3dd941994 100644 --- a/.github/workflows/pr_ci.yml +++ b/.github/workflows/pr_ci.yml @@ -57,10 +57,9 @@ jobs: run: | dotnet restore /p:DisableImplicitNuGetFallbackFolder=true /p:DisableImplicitLibraryPacksFolder - # for CI build we can use Deterministic = false to enable restore - name: Build run: | - dotnet build -c Release --no-restore --framework net6.0 /p:IncludeSymbols=false /p:Deterministic=false /p:CreateHardLinksForCopyLocalIfPossible=true /p:CreateHardLinksForCopyFilesToOutputDirectoryIfPossible=true /p:CreateHardLinksForPublishFilesIfPossible=true + dotnet build -c Release --no-restore --framework net6.0 /p:IncludeSymbols=false /p:CreateHardLinksForCopyLocalIfPossible=true /p:CreateHardLinksForCopyFilesToOutputDirectoryIfPossible=true /p:CreateHardLinksForPublishFilesIfPossible=true - name: Unit Tests run: |