Skip to content

Commit dabf922

Browse files
Consume .NET nightly builds
Consume nightly builds of .NET 10.
1 parent e9b8724 commit dabf922

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

NuGet.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@
33
<packageSources>
44
<clear />
55
<add key="aspnet-contrib" value="https://www.myget.org/F/aspnet-contrib/api/v3/index.json" />
6+
<add key="dotnet10" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10/nuget/v3/index.json" />
67
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
78
</packageSources>
89
<packageSourceMapping>
910
<packageSource key="aspnet-contrib">
1011
<package pattern="AspNet.Security.OAuth.GitHub" />
1112
</packageSource>
13+
<packageSource key="dotnet10">
14+
<package pattern="*" />
15+
</packageSource>
1216
<packageSource key="NuGet">
1317
<package pattern="*" />
1418
</packageSource>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "10.0.100-preview.6.25358.103",
3+
"version": "10.0.100-preview.7.25380.108",
44
"allowPrerelease": false,
55
"rollForward": "latestMajor",
66
"paths": [ ".dotnet", "$host$" ],

src/TodoApp/TodoApp.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
</PropertyGroup>
1212
<ItemGroup>
1313
<PackageReference Include="AspNet.Security.OAuth.GitHub" Version="10.0.0-preview.6.25365.59" />
14-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0-preview.6.25358.103" />
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0-preview.6.25358.103" />
14+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0-preview.7.25380.108" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0-preview.7.25380.108" />
1616
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.8.3" PrivateAssets="all" />
1717
</ItemGroup>
1818
<ItemGroup>

tests/TodoApp.Tests/TodoApp.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PackageReference Include="JunitXml.TestLogger" Version="6.1.0" />
1414
<PackageReference Include="JustEat.HttpClientInterception" Version="5.1.2" />
1515
<PackageReference Include="MartinCostello.Logging.XUnit.v3" Version="0.6.0" />
16-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0-preview.6.25358.103" />
16+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0-preview.7.25380.108" />
1717
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
1818
<PackageReference Include="Microsoft.Playwright" Version="1.54.0" />
1919
<PackageReference Include="ReportGenerator" Version="5.4.11" />

0 commit comments

Comments
 (0)