Only run test project on .NET 9

This commit is contained in:
Vincent Baaij 2024-09-05 21:22:22 +02:00
Родитель 6e1b7858df
Коммит 844e52afdd
2 изменённых файлов: 2 добавлений и 2 удалений

2
.github/workflows/build-core-lib.yml поставляемый
Просмотреть файл

@ -126,7 +126,7 @@ jobs:
- name: Report Generator
uses: danielpalme/ReportGenerator-GitHub-Action@5.2.4
with:
reports: '**/coverage.net8.0.cobertura.xml;**/coverage.net9.0.cobertura.xml'
reports: '**/coverage.cobertura.xml;**/coverage.net8.0.cobertura.xml;**/coverage.net9.0.cobertura.xml'
targetdir: 'CoverageReports'
title: 'Unit Tests Code Coverage'
classfilters: '-Microsoft.FluentUI.AspNetCore.Components.DesignTokens.*'

Просмотреть файл

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<TargetFrameworks>net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>