Skip to content

chore: Update NuGet config to include nuget.org fallback #701

chore: Update NuGet config to include nuget.org fallback

chore: Update NuGet config to include nuget.org fallback #701

Workflow file for this run

name: .NET Core
on: [push]
jobs:
build:
runs-on: windows-latest
continue-on-error: true
name: Abstractions GitHub Action Test
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup .NET 8.0.x
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
# Run the tests
- name: Build with .NET 8.0.x
run: dotnet test -v m --configuration Release Microsoft.Identity.Abstractions.sln
- name: Setup .NET 10.0.100-rc.1
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.100-rc.1.25451.107
# Run the tests
- 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
- name: Pack
run: dotnet pack -p:TargetNetNext=True --configuration Release --no-restore --no-build -v m Microsoft.Identity.Abstractions.sln