diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec89cc4..0ca6d04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,11 +41,12 @@ jobs: # Install SF SDK - name: Install SF shell: pwsh - run: | + run: | Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force -Scope CurrentUser $ProgressPreference = 'SilentlyContinue' - Invoke-WebRequest -OutFile setup.exe -Uri https://download.microsoft.com/download/b/8/a/b8a2fb98-0ec1-41e5-be98-9d8b5abf7856/MicrosoftServiceFabric.10.0.1816.9590.exe - .\setup.exe /accepteula /force /quiet + Invoke-RestMethod -OutFile setup.exe -Method GET -Uri https://download.microsoft.com/download/b/8/a/b8a2fb98-0ec1-41e5-be98-9d8b5abf7856/MicrosoftServiceFabric.10.1.1951.9590.exe + #.\setup.exe /accepteula /force /quiet + Start-Process setup.exe -UseNewEnvironment -ArgumentList '/accepteula /force /quiet' -Wait # Create SNK - name: Create SNK @@ -53,7 +54,7 @@ jobs: env: SNK_PASSWORD: ${{ secrets.PFX_KEY }} run: | - .\ExtractPrivateKey.ps1 "$env:SNK_PASSWORD" + .\ExtractPrivateKey.ps1 "ServiceFabric.Mocks" # Run dotnet build - name: Run build diff --git a/README.md b/README.md index 26e99f3..28de6d5 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,10 @@ Thank you for contributing! ## Release notes +- 7.1.3 + - First version that uses SF 7.0.1951 +- 7.1.2 + - First version that uses SF 7.1.1541 - 7.1.0 - First version that uses SF 7.0.1816 - 7.0.1 diff --git a/src/ServiceFabric.Mocks/ServiceFabric.Mocks.csproj b/src/ServiceFabric.Mocks/ServiceFabric.Mocks.csproj index f3f42c4..b165389 100644 --- a/src/ServiceFabric.Mocks/ServiceFabric.Mocks.csproj +++ b/src/ServiceFabric.Mocks/ServiceFabric.Mocks.csproj @@ -4,7 +4,7 @@ ServiceFabric.Mocks contains many mocks and helper classes to facilitate and simplify unit testing of your Service Fabric Actor and Service projects. 2022 ServiceFabric.Mocks - 6.0.5 + 7.1.0 Loek Duys net48;netstandard2.0 x64 @@ -38,7 +38,7 @@ - + diff --git a/test/ServiceFabric.Mocks.NetCoreTests/ServiceFabric.Mocks.NetCoreTests.csproj b/test/ServiceFabric.Mocks.NetCoreTests/ServiceFabric.Mocks.NetCoreTests.csproj index 0eaf1ce..77cea70 100644 --- a/test/ServiceFabric.Mocks.NetCoreTests/ServiceFabric.Mocks.NetCoreTests.csproj +++ b/test/ServiceFabric.Mocks.NetCoreTests/ServiceFabric.Mocks.NetCoreTests.csproj @@ -4,7 +4,7 @@ ServiceFabric.Mocks contains Mock classes to enable unit testing of Actors and Services 2022 ServiceFabric.Mocks.NetCoreTests - 1.0.1 + 1.0.0 Loek Duys net6.0 x64 @@ -36,7 +36,7 @@ - +