Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ivandrofly authored Nov 20, 2024
1 parent bdb3257 commit 303eca7
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build .NET Framework Project

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: windows-latest

steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3

# Setup MSBuild
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1

# Setup NuGet
- name: Setup NuGet
uses: NuGet/setup-nuget@v1

# Restore NuGet packages
- name: Restore NuGet packages
run: nuget restore "source\Plugins.sln"

# Build the solution
- name: Build solution
run: msbuild "\source\Plugins.sln" /p:Configuration=Release

# Run tests (optional)
#- name: Run tests
#run: |
#vstest.console.exe path\to\your\test\project.dll

0 comments on commit 303eca7

Please sign in to comment.