File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 -->
You can’t perform that action at this time.
0 commit comments