Skip to content

Update Microsoft to 10.0.10 #242

Update Microsoft to 10.0.10

Update Microsoft to 10.0.10 #242

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
# Allow manually triggering
workflow_dispatch:
jobs:
build:
runs-on: windows-2025-vs2026
steps:
- name: Checkout
uses: actions/checkout@v7
with:
fetch-depth: 0 # Git Versioning requires a non-shallow clone
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.x'
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v3
- name: Build
run: msbuild -property:Configuration=Release -property:Platform=x64 -bl:logs/msbuild.binlog
- name: Upload logs
uses: actions/upload-artifact@v7
with:
name: logs
path: ./logs
if: ${{ always() }} # Always run this step even on failure
- name: Upload artifacts
uses: actions/upload-artifact@v7
with:
name: artifacts
path: ./artifacts
if: ${{ always() }} # Always run this step even on failure