Skip to content

Commit 5cd21bc

Browse files
sshumakovloekd
andauthored
Update Microsoft.ServiceFabric.Actors to 8.0.2707 (#254)
* Update Microsoft.ServiceFabric.Actors dependency * Remove Service Fabric SDK registry key --------- Co-authored-by: Loek Duys <[email protected]>
1 parent de3bf2d commit 5cd21bc

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ jobs:
4444
run: |
4545
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force -Scope CurrentUser
4646
$ProgressPreference = 'SilentlyContinue'
47+
$keyPath = "HKLM:\SOFTWARE\Microsoft\Service Fabric SDK"
48+
if (Test-Path $keyPath) {
49+
Remove-Item -Path $keyPath -Force
50+
Write-Output "Registry key removed: $keyPath"
51+
} else {
52+
Write-Output "Registry key not found: $keyPath"
53+
}
4754
# see https://learn.microsoft.com/en-us/azure/service-fabric/service-fabric-get-started
4855
Invoke-RestMethod -OutFile setup.exe -Method GET -Uri https://download.microsoft.com/download/b/8/a/b8a2fb98-0ec1-41e5-be98-9d8b5abf7856/MicrosoftServiceFabric.11.0.2707.1.exe
4956
# .\setup.exe /accepteula /force /quiet

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- ServiceFabric.Mocks.csproj -->
99
<ItemGroup>
10-
<PackageVersion Include="Microsoft.ServiceFabric.Actors" Version="7.1.2841" />
10+
<PackageVersion Include="Microsoft.ServiceFabric.Actors" Version="8.0.2707" />
1111
</ItemGroup>
1212

1313
<!-- ServiceFabric.Mocks.NetCoreTests.csproj -->

0 commit comments

Comments
 (0)