Create build.yml

This commit is contained in:
Clemens 2025-08-31 09:41:54 +02:00 committed by GitHub
parent dad3b3ed1b
commit ab9737c2ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

22
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Build
on: [workflow_dispatch]
jobs:
build:
runs-on: windows-latest
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: Build MapControl Library for WPF
run: msbuild -restore -verbosity:minimal -property:Configuration=Release;GeneratePackage=True -target:Rebuild MapControl\WPF\MapControl.WPF.csproj