From ab9737c2baed111998913de7ab3fa4c3146f3ac6 Mon Sep 17 00:00:00 2001 From: Clemens Date: Sun, 31 Aug 2025 09:41:54 +0200 Subject: [PATCH] Create build.yml --- .github/workflows/build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..f6203e24 --- /dev/null +++ b/.github/workflows/build.yml @@ -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