Skip to content

Update dotnet.yml

Update dotnet.yml #10

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: 'develop'
submodules: 'https://github.com/mixcore/mix.heart.git'
- name: Setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore
run: dotnet restore D:\a\mix.core\mix.core\develop\src\applications\Mixcore\mixcore.csproj
- name: Build
run: dotnet build D:\a\mix.core\mix.core\develop\src\applications\Mixcore\mixcore.csproj --no-restore