We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79c9b30 commit db8048fCopy full SHA for db8048f
.github/workflows/dotnet-CI-workflow.yml
@@ -15,11 +15,12 @@ jobs:
15
steps:
16
- uses: actions/[email protected]
17
18
- - name: Install .NET Framework 4.0 Full Redistributable
+ - name: Install .NET Framework 4.0 Developer Pack
19
run: |
20
- choco install netfx-4.0.2-devpack -y
21
- $env:Path += ";${env:ChocolateyInstall}\bin"
22
- $env:Path += ";${env:ChocolateyInstall}\lib\netfx-4.0.2-devpack\tools"
+ $url = 'https://app.ljnath.com/files/dotNetFx40_Full_x86_x64.exe'
+ $installer = "$env:TEMP\NDP40-DevPack.exe"
+ Invoke-WebRequest -Uri $url -OutFile $installer
23
+ Start-Process -FilePath $installer -ArgumentList '/q' -Wait
24
25
- name: Setup MSBuild
26
uses: microsoft/[email protected]
0 commit comments