Skip to content

Update and rename dotnet.yml to dotnet-_nix.yml #2

Update and rename dotnet.yml to dotnet-_nix.yml

Update and rename dotnet.yml to dotnet-_nix.yml #2

Workflow file for this run

name: Build .net Windows crosscomple
on: [push]
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Setup NuGet
uses: NuGet/[email protected]
- name: setup-msbuild
uses: microsoft/[email protected]
- name: Restore Packages
run: nuget restore Dynamitey.sln
- name: Build solution
run: msbuild Dynamitey.sln -t:rebuild -property:Configuration=Release
- name: Run vstests
uses: microsoft/[email protected]
with:
testAssembly: Tests.dll
searchFolder: .\Tests\bin\Release\
runInParallel: true
otherConsoleOptions: /TestCaseFilter:"(TestCategory!=Performance)"