Skip to content

16 editor encodedecode xnb files #11

16 editor encodedecode xnb files

16 editor encodedecode xnb files #11

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
paths-ignore:
- "*.md"
- ".gitignore"
- ".editorconfig"
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
architecture: [x64]
configuration: [Debug, Release]
steps:
- name: Checkout
uses: actions/checkout@v4
# Add MSBuild
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
# Restore packages
- name: Restore NuGet
run: msbuild -p:RestorePackagesConfig=true -t:restore
# Build solution
- name: Build Solution
run: msbuild $env:Solution_Name /t:build /p:configuration=${{ matrix.configuration }}