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
6 changes: 3 additions & 3 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
- name: Build with .NET 8.0.x
run: dotnet test -v m --configuration Release Microsoft.Identity.Abstractions.sln

- name: Setup .NET 10.0.x
- name: Setup .NET 10.0.100-rc.1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
dotnet-version: 10.0.100-rc.1.25451.107

# Run the tests
- name: Build with .NET 10.0.x
- name: Build with .NET 10.0.100-rc.1
run: dotnet test -p:TargetNetNext=True -v m --configuration Release Microsoft.Identity.Abstractions.sln

# Pack the library
Expand Down
4 changes: 2 additions & 2 deletions build/template-install-dotnet-core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
steps:

- task: UseDotNet@2
displayName: 'Use .Net Core SDK 10'
displayName: 'Use .Net Core SDK 10.0.100-rc.1'
condition: eq(variables['TargetNetNext'], 'True')
inputs:
version: 10.0.x
version: 10.0.100-rc.1.25451.107

- task: UseDotNet@2
displayName: 'Use .Net Core SDK 8'
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@

## Fundamentals
* Migrate repository agent rules from .clinerules to agents.md. For details, see [#206](https://github.com/AzureAD/microsoft-identity-abstractions-for-dotnet/pull/206)
* Update to .NET 10 RC 1 (10.0.100-rc.1.25451.107) with explicit SDK version.
- Updated GitHub Actions workflow to use explicit .NET 10 RC 1 SDK version instead of wildcard
- Updated Azure DevOps pipeline template to use explicit .NET 10 RC 1 SDK version
- Verified compatibility with .NET 10 RC 1 breaking changes

9.4.0
======
Expand Down
12 changes: 6 additions & 6 deletions test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
</PropertyGroup> -->

<PropertyGroup>
<MicrosoftNetTestSdkVersion>17.3.2</MicrosoftNetTestSdkVersion>
<!-- GHSA-5crp-9r3c-p9vr -->
<NewtonsoftJsonVersion>13.0.1</NewtonsoftJsonVersion>
<XunitVersion>2.4.2</XunitVersion>
<XunitRunnerVisualStudioVersion>2.4.5</XunitRunnerVisualStudioVersion>
<CoverletCollectorVersion>3.1.2</CoverletCollectorVersion>
<MicrosoftNetTestSdkVersion>18.0.0</MicrosoftNetTestSdkVersion>
<!-- GHSA-5crp-9r3c-p9vr - Updated to 13.0.3 for .NET 10 compatibility -->
<NewtonsoftJsonVersion>13.0.3</NewtonsoftJsonVersion>
<XunitVersion>2.9.3</XunitVersion>
<XunitRunnerVisualStudioVersion>2.8.2</XunitRunnerVisualStudioVersion>
<CoverletCollectorVersion>6.0.4</CoverletCollectorVersion>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
Expand Down
Loading