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 6bcf4c3 commit 0408c45Copy full SHA for 0408c45
.github/workflows/build_publish.yml
@@ -10,10 +10,24 @@ jobs:
10
runs-on: windows-latest
11
steps:
12
- uses: actions/checkout@v2
13
+
14
- name: Add msbuild to PATH
15
uses: microsoft/setup-msbuild@v1.0.0
16
17
+ - name: Setup NuGet
18
+ uses: NuGet/setup-nuget@v1.0.2
19
20
+ - name: Restore NuGet Packages
21
+ run: nuget restore SimpleFrameworkApp.sln
22
23
- name: Build
24
run: dotnet build --configuration Release
25
26
+# - name: Build and Publish Web App
27
+# run: msbuild SimpleFrameworkApp.sln /p:Configuration=Release /p:DeployOnBuild=true /p:PublishProfile=FolderProfile
28
29
30
31
# - name: Test
32
# shell: sh
33
# run: ./mono_nunit_test.sh
0 commit comments