Skip to content

Update dependency windows to v2025 #36

Update dependency windows to v2025

Update dependency windows to v2025 #36

Workflow file for this run

name: Compile solution
on:
push:
branches:
- '*'
pull_request:
jobs:
windows:
name: windows-2022
runs-on: windows-2025
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache NuGet
uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', 'Directory.Build.props', 'Directory.Packages.props') }}
restore-keys: ${{ runner.os }}-nuget-
- name: Compile solution
run: dotnet run -c Release
working-directory: "build"
env:
DOTNET_ENVIRONMENT: ${{ github.ref == 'refs/heads/main' && 'Production' || 'Development' }}