From c62605bc5408b9ab3453fd8f485013635b4d8f6e Mon Sep 17 00:00:00 2001 From: Todd Menier Date: Wed, 1 Jan 2025 14:49:53 -0600 Subject: [PATCH] CI - still struggling with escaping https://github.com/dotnet/msbuild/issues/2999#issuecomment-366101535 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d67f8b7..cf7aa73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,4 +38,4 @@ jobs: run: dotnet restore - name: Test - run: dotnet test --framework ${{ matrix.framework }} -c Release /p:CollectCoverage=true /p:Threshold=80 /p:Include="[Flurl]*,[Flurl.Http]*,[Flurl.Http.Newtonsoft]*" /p:Exclude="[*]*.GeneratedExtensions" + run: dotnet test --framework ${{ matrix.framework }} -c Release /p:CollectCoverage=true /p:Threshold=80 /p:Include="[Flurl]*%2c[Flurl.Http]*%2c[Flurl.Http.Newtonsoft]*" /p:Exclude="[*]*.GeneratedExtensions"