Skip to content

Commit

Permalink
Create dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fkiliver authored Jan 15, 2024
1 parent 94b8e28 commit f270e54
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: .NET 3.5 CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Setup .NET 3.5
uses: actions/setup-dotnet@v2
with:
dotnet-version: '3.5'
# - name: Build with MSBuild
# run: msbuild /p:Configuration=Release
#测试
- name: Test with MSBuild
run: msbuild /p:Configuration=Release /p:TargetFrameworkVersion=v3.5 /t:Test

0 comments on commit f270e54

Please sign in to comment.