-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,9 +17,9 @@ jobs: | |
|
||
- name: Install .NET Framework 4.0 Full Redistributable | ||
run: | | ||
choco install dotnet4.0 -y | ||
Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1 | ||
RefreshEnvironment | ||
choco install dotnet4.0 -y | ||
$env:Path += ";${env:ChocolateyInstall}\bin" | ||
$env:Path += ";${env:ChocolateyInstall}\lib\dotnet4.0\tools" | ||
- name: Setup MSBuild | ||
uses: microsoft/[email protected] | ||
|
@@ -33,7 +33,7 @@ jobs: | |
- name: Restore NuGet packages | ||
run: nuget restore RandomString4Net.sln | ||
|
||
- name: Build RandomString4Net project for release | ||
- name: Build RandomString4Net for Release | ||
run: msbuild RandomString4Net.sln -property:Configuration=Release -property:platform="Any CPU" | ||
|
||
- name: Run Tests | ||
|