optimize IViewModelLocator not found fix #100
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v1 | |
- name: Build | |
run: msbuild Caliburn.Light.sln /restore /t:Pack /p:Configuration=Release | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: NuGet packages | |
path: bin/platform/**/*.nupkg |