Skip to content

Merge pull request #4 from mauriciobellon/DeployProject-Setup-Vdproj #5

Merge pull request #4 from mauriciobellon/DeployProject-Setup-Vdproj

Merge pull request #4 from mauriciobellon/DeployProject-Setup-Vdproj #5

name: .NET Core Desktop
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: windows-latest
env:
Solution_Name: RoundedWindowsEdges.sln
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
- name: Restore the application
run: msbuild ${{ env.Solution_Name }} /t:Restore /p:Configuration=${{ matrix.configuration }}
env:
Configuration: ${{ matrix.configuration }}
- name: Build the application
run: msbuild ${{ env.Solution_Name }} /p:Configuration=${{ matrix.configuration }}
env:
Configuration: ${{ matrix.configuration }}
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: Build
path: '**/bin/${{ matrix.configuration }}/**/*'