Skip to content

- json is added.

- json is added. #13

Workflow file for this run

name: .NET Core
on:
push:
branches:
- main
paths:
- 'src/DynamicDiToolkit/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore