Replace packages.config with PackageReferences #129
Workflow file for this run
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: Build Managed | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
managed-build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # avoid shallow clone so nbgv can do its work. | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 6.0.x | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
- name: Restore | |
run: nuget restore src/BehaviorsSdk.sln | |
- name: Build | |
run: msbuild src/BehaviorsSdk.sln /p:Configuration=Release | |
- name: Run Tests | |
run: dotnet test src/BehaviorsSdk.sln --no-restore --verbosity minimal | |
- name: Pack Behaviors | |
if: success() | |
run: msbuild src/Microsoft.Xaml.Behaviors/Microsoft.Xaml.Behaviors.csproj /p:Configuration=Release -t:pack | |
- name: Upload NuGet Artifacts | |
if: success() | |
uses: actions/upload-artifact@v2 | |
with: | |
path: src/Microsoft.Xaml.Behaviors/bin/Release/*.nupkg |