Skip to content

Add custom JsonConverters to ensure that JS function strings are evaluated into function when deserialized by JS #502

Add custom JsonConverters to ensure that JS function strings are evaluated into function when deserialized by JS

Add custom JsonConverters to ensure that JS function strings are evaluated into function when deserialized by JS #502

Workflow file for this run

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [6, 7, 8]
steps:
- uses: actions/checkout@v2
- name: Setup dotnet ${{ matrix.dotnet-version }}.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore --framework net${{ matrix.dotnet-version }}.0
working-directory: ./src/Blazor-ApexCharts