Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Microsoft.ServiceFabric.* from 7.1.1541 to 7.1.1951 #182

Merged
merged 13 commits into from
Apr 21, 2024
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,20 @@ 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
shell: pwsh
env:
SNK_PASSWORD: ${{ secrets.PFX_KEY }}
run: |
.\ExtractPrivateKey.ps1 "$env:SNK_PASSWORD"
.\ExtractPrivateKey.ps1 "ServiceFabric.Mocks"

# Run dotnet build
- name: Run build
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/ServiceFabric.Mocks/ServiceFabric.Mocks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>ServiceFabric.Mocks contains many mocks and helper classes to facilitate and simplify unit testing of your Service Fabric Actor and Service projects.</Description>
<Copyright>2022</Copyright>
<AssemblyTitle>ServiceFabric.Mocks</AssemblyTitle>
<Version>6.0.5</Version>
<Version>7.1.0</Version>
<Authors>Loek Duys</Authors>
<TargetFrameworks>net48;netstandard2.0</TargetFrameworks>
<PlatformTarget>x64</PlatformTarget>
Expand Down Expand Up @@ -38,7 +38,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.ServiceFabric.Actors" Version="7.1.1541" />
<PackageReference Include="Microsoft.ServiceFabric.Actors" Version="7.1.1951" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>ServiceFabric.Mocks contains Mock classes to enable unit testing of Actors and Services</Description>
<Copyright>2022</Copyright>
<AssemblyTitle>ServiceFabric.Mocks.NetCoreTests</AssemblyTitle>
<VersionPrefix>1.0.1</VersionPrefix>
<VersionPrefix>1.0.0</VersionPrefix>
<Authors>Loek Duys</Authors>
<TargetFramework>net6.0</TargetFramework>
<PlatformTarget>x64</PlatformTarget>
Expand Down Expand Up @@ -36,7 +36,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.ServiceFabric.Actors" Version="7.1.1541" />
<PackageReference Include="Microsoft.ServiceFabric.Actors" Version="7.1.1951" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
Expand Down
Loading