Skip to content

Bump version, add deprecation notice #28

Bump version, add deprecation notice

Bump version, add deprecation notice #28

Workflow file for this run

name: build
on:
workflow_dispatch:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: |
dotnet pack ModernXamlCompiler/ModernXamlCompiler.msbuildproj -c Release --no-restore /clp:ErrorsOnly
dotnet pack WinUIProjectionPackage/WinUIProjectionPackage.csproj -c Release --no-restore /clp:ErrorsOnly
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ModernXamlCompiler
path: |
ModernXamlCompiler/bin/Release/*.nupkg
WinUIProjectionPackage/bin/Release/*.nupkg