Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup .NET 9
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
dotnet-version: 10.0.x

- name: Build - Release
run: dotnet build -c Release src/Framework.sln
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET 9
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
dotnet-version: 10.0.x

- name: Build and Test
run: dotnet test -c Release src/Framework.sln
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![][WorkflowBadgePublish]][PublishWorkflow] [![License: MIT][LicenseBadge]][License]

Welcome to Cloudtoid's Framework project, which is a library of utility classes, targeting `.net 9+`.
Welcome to Cloudtoid's Framework project, which is a library of utility classes, targeting `.NET 10+`.

The latest NuGet package can be found [here][NuGet].

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.14.*" />
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
</ItemGroup>

<ItemGroup>
Expand Down
18 changes: 9 additions & 9 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,30 @@

<!-- Build Settings -->
<PropertyGroup>
<TargetFrameworks>net9.0</TargetFrameworks>
<TargetFrameworks>net10.0</TargetFrameworks>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<!-- Product Package Versions -->
<PropertyGroup>
<MicrosoftExtensionsVersion>9.0.*</MicrosoftExtensionsVersion>
<MicrosoftExtensionsVersion>10.0.12</MicrosoftExtensionsVersion>
</PropertyGroup>

<!-- Test Package Versions -->
<PropertyGroup>
<MicrosoftDotNetTestSdk>17.12.*</MicrosoftDotNetTestSdk>
<MSTestVersion>3.7.*</MSTestVersion>
<NSubstituteVersion>5.3.*</NSubstituteVersion>
<FluentAssertionsVersion>7.0.*</FluentAssertionsVersion>
<CoverletVersion>6.0.*</CoverletVersion>
<MicrosoftDotNetTestSdk>18.10.0</MicrosoftDotNetTestSdk>
<MSTestVersion>4.4.0</MSTestVersion>
<NSubstituteVersion>6.2.0</NSubstituteVersion>
<FluentAssertionsVersion>8.10.0</FluentAssertionsVersion>
<CoverletVersion>10.0.1</CoverletVersion>
</PropertyGroup>

<!-- Code Analyzer Versions -->
<PropertyGroup>
<CloudtoidCodeAnalysisVersion>1.0.*</CloudtoidCodeAnalysisVersion>
<BannedApiAnalyzersVersion>3.3.*</BannedApiAnalyzersVersion>
<CloudtoidCodeAnalysisVersion>1.0.24</CloudtoidCodeAnalysisVersion>
<BannedApiAnalyzersVersion>5.6.0</BannedApiAnalyzersVersion>
</PropertyGroup>

<!-- Code Analyzer Packages -->
Expand Down
Loading