We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed16014 commit 3e9a41fCopy full SHA for 3e9a41f
1 file changed
.github/workflows/dotnet-CI-workflow.yml
@@ -17,9 +17,9 @@ jobs:
17
18
- name: Install .NET Framework 4.0 Full Redistributable
19
run: |
20
- choco install dotnet4.0 -y
21
- Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1
22
- RefreshEnvironment
+ choco install dotnet4.0 -y
+ $env:Path += ";${env:ChocolateyInstall}\bin"
+ $env:Path += ";${env:ChocolateyInstall}\lib\dotnet4.0\tools"
23
24
- name: Setup MSBuild
25
uses: microsoft/setup-msbuild@v1.3.1
@@ -33,7 +33,7 @@ jobs:
33
- name: Restore NuGet packages
34
run: nuget restore RandomString4Net.sln
35
36
- - name: Build RandomString4Net project for release
+ - name: Build RandomString4Net for Release
37
run: msbuild RandomString4Net.sln -property:Configuration=Release -property:platform="Any CPU"
38
39
- name: Run Tests
0 commit comments