-
Notifications
You must be signed in to change notification settings - Fork 0
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
11 additions
and
8 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 |
---|---|---|
|
@@ -43,14 +43,17 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup .NET Core SDK | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: '4.8' # or whichever version you need for .NET Framework | ||
- run: echo '${{ steps.stepid.outputs.dotnet-version }}' | ||
|
||
- name: Build .NET Standard DLL | ||
run: dotnet build -c Release AdvancedRestHandler/AdvancedRestHandler.csproj | ||
- name: Setup MSBuild | ||
uses: microsoft/setup-msbuild@v1 | ||
|
||
- name: Setup NuGet.exe for use with actions | ||
uses: NuGet/[email protected] | ||
|
||
- name: Restore NuGet packages | ||
run: nuget restore AdvancedRestHandler/AdvancedRestHandler.csproj | ||
|
||
- name: Build the Project | ||
run: msbuild AdvancedRestHandler/AdvancedRestHandler.csproj | ||
|
||
build-test-dotnet: | ||
runs-on: ubuntu-latest | ||
|