-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change to .NET 9 GA version all the way. Remove .NET 8 packages. sett…
…ings, etc (#2932)
- Loading branch information
Showing
11 changed files
with
62 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,16 +42,11 @@ jobs: | |
- name: Checkout source | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup .NET 8.0 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Setup .NET 9.0 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 9.0.x | ||
dotnet-quality: preview | ||
dotnet-quality: ga | ||
|
||
# Build | ||
|
||
|
@@ -128,7 +123,7 @@ jobs: | |
- name: Report Generator | ||
uses: danielpalme/[email protected] | ||
with: | ||
reports: '**/coverage.cobertura.xml;**/coverage.net8.0.cobertura.xml;**/coverage.net9.0.cobertura.xml' | ||
reports: '**/coverage.cobertura.xml;**/coverage.net9.0.cobertura.xml' | ||
targetdir: 'CoverageReports' | ||
title: 'Unit Tests Code Coverage' | ||
classfilters: '-Microsoft.FluentUI.AspNetCore.Components.DesignTokens.*' | ||
|
@@ -167,16 +162,11 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup .NET 8.0 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Setup .NET 9.0 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 9.0.x | ||
dotnet-quality: preview | ||
dotnet-quality: ga | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
examples/Demo/FluentUI.Demo.Client/FluentUI.Demo.Client.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
examples/Tools/FluentUI.Demo.DocViewer/FluentUI.Demo.DocViewer.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
examples/Tools/FluentUI.Demo.SampleApi/FluentUI.Demo.SampleApi.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
examples/Tools/FluentUI.Demo.SampleData/FluentUI.Demo.SampleData.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// ------------------------------------------------------------------------ | ||
// MIT License - Copyright (c) Microsoft Corporation. All rights reserved. | ||
// ------------------------------------------------------------------------ | ||
namespace Microsoft.FluentUI.AspNetCore.Components; | ||
|
||
/// <summary> | ||
/// Base interface for Fluent UI Blazor components. | ||
/// </summary> | ||
public interface IFluentComponentBase | ||
{ | ||
/// <summary> | ||
/// Gets or sets a collection of additional attributes that will be applied to the created element. | ||
/// </summary> | ||
IReadOnlyDictionary<string, object>? AdditionalAttributes { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the CSS class names. If given, these will be included in the class attribute of the component. | ||
/// </summary> | ||
string? Class { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets custom data. Used to attach any custom data object to the component. | ||
/// </summary> | ||
object? Data { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the unique identifier. | ||
/// The value will be used as the HTML <see href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id">global id attribute</see>. | ||
/// </summary> | ||
string? Id { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the in-line styles. If given, these will be included in the style attribute of the component. | ||
/// </summary> | ||
string? Style { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters