Skip to content

Update dependency JetBrains.Annotations to 2025.2.4 #38

Update dependency JetBrains.Annotations to 2025.2.4

Update dependency JetBrains.Annotations to 2025.2.4 #38

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@v6
- 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' }}