Create main.yml

This commit is contained in:
Sora 2023-04-16 08:46:55 +08:00 committed by GitHub
parent ec7b605b24
commit 9889d97aec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 30 additions and 0 deletions

30
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: Build ChangeTimestamp
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
configuration: [Release]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use .NET Framework version 4.0
uses: microsoft/setup-msbuild@v1.0.2
with:
dotnet-version: '4.0'
- name: Restore NuGet packages
run: nuget restore ChangeTimestamp.sln
- name: Build solution
run: msbuild.exe ChangeTimestamp.sln /t:Build /p:Configuration=${{ matrix.configuration }}