File tree Expand file tree Collapse file tree 2 files changed +30
-22
lines changed Expand file tree Collapse file tree 2 files changed +30
-22
lines changed Original file line number Diff line number Diff line change @@ -54,17 +54,21 @@ jobs:
54
54
echo $sdkmanagerpath
55
55
. $sdkmanagerpath --install "platforms;android-30"
56
56
57
- - name : Install Windows SDK 10.0.16299
58
- shell : pwsh
59
- run : |
60
- Invoke-WebRequest -Uri https://go.microsoft.com/fwlink/p/?linkid=864422 -OutFile winsdk.exe
61
- $startInfo = New-Object System.Diagnostics.ProcessStartInfo
62
- $startInfo.FileName = "winsdk.exe"
63
- $startInfo.Arguments = "/norestart /quiet"
64
- $process = New-Object System.Diagnostics.Process
65
- $process.StartInfo = $startInfo
66
- $process.Start()
67
- $process.WaitForExit()
57
+ # - name: Download Windows SDK 10.0.16299
58
+ # shell: pwsh
59
+ # run: |
60
+ # Invoke-WebRequest -Uri https://go.microsoft.com/fwlink/p/?linkid=864422 -OutFile winsdk.exe
61
+
62
+ # - name: Install Windows SDK 10.0.16299
63
+ # shell: pwsh
64
+ # run: |
65
+ # $startInfo = New-Object System.Diagnostics.ProcessStartInfo
66
+ # $startInfo.FileName = "winsdk.exe"
67
+ # $startInfo.Arguments = "/norestart /quiet"
68
+ # $process = New-Object System.Diagnostics.Process
69
+ # $process.StartInfo = $startInfo
70
+ # $process.Start()
71
+ # $process.WaitForExit()
68
72
69
73
- name : Install .NET 8
70
74
uses : actions/setup-dotnet@v4
Original file line number Diff line number Diff line change @@ -66,17 +66,21 @@ jobs:
66
66
echo $sdkmanagerpath
67
67
. $sdkmanagerpath --install "platforms;android-30"
68
68
69
- - name : Install Windows SDK 10.0.16299
70
- shell : pwsh
71
- run : |
72
- Invoke-WebRequest -Uri https://go.microsoft.com/fwlink/p/?linkid=864422 -OutFile winsdk.exe
73
- $startInfo = New-Object System.Diagnostics.ProcessStartInfo
74
- $startInfo.FileName = "winsdk.exe"
75
- $startInfo.Arguments = "/norestart /quiet"
76
- $process = New-Object System.Diagnostics.Process
77
- $process.StartInfo = $startInfo
78
- $process.Start()
79
- $process.WaitForExit()
69
+ # - name: Download Windows SDK 10.0.16299
70
+ # shell: pwsh
71
+ # run: |
72
+ # Invoke-WebRequest -Uri https://go.microsoft.com/fwlink/p/?linkid=864422 -OutFile winsdk.exe
73
+
74
+ # - name: Install Windows SDK 10.0.16299
75
+ # shell: pwsh
76
+ # run: |
77
+ # $startInfo = New-Object System.Diagnostics.ProcessStartInfo
78
+ # $startInfo.FileName = "winsdk.exe"
79
+ # $startInfo.Arguments = "/norestart /quiet"
80
+ # $process = New-Object System.Diagnostics.Process
81
+ # $process.StartInfo = $startInfo
82
+ # $process.Start()
83
+ # $process.WaitForExit()
80
84
81
85
# - name: Setup .NET Core 3.1
82
86
# uses: actions/setup-dotnet@v3
You can’t perform that action at this time.
0 commit comments