Skip to content

Commit a98077c

Browse files
Update to ASP.NET Core 10 preview 6
Update to preview 6 of ASP.NET Core 10.
1 parent ca6737f commit a98077c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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.5.25277.114",
3+
"version": "10.0.100-preview.6.25358.103",
44
"allowPrerelease": false,
55
"rollForward": "latestMajor",
66
"paths": [ ".dotnet", "$host$" ],

src/TodoApp/TodoApp.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<UserSecretsId>TodoApp</UserSecretsId>
1111
</PropertyGroup>
1212
<ItemGroup>
13-
<PackageReference Include="AspNet.Security.OAuth.GitHub" Version="10.0.0-preview.5.25310.82" />
14-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0-preview.5.25277.114" />
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0-preview.5.25277.114" />
13+
<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" />
1616
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.8.3" PrivateAssets="all" />
1717
</ItemGroup>
1818
<ItemGroup>

tests/TodoApp.Tests/BrowserStackLocalService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ private static async Task<string> EnsureBinaryAsync(CancellationToken cancellati
197197

198198
Directory.CreateDirectory(localCachePath);
199199

200-
ZipFile.ExtractToDirectory(source, localCachePath);
200+
await ZipFile.ExtractToDirectoryAsync(source, localCachePath, cancellationToken);
201201
await File.WriteAllTextAsync(cachedETagFileName, currentETag, Encoding.UTF8, cancellationToken);
202202
}
203203

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.5.25277.114" />
16+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0-preview.6.25358.103" />
1717
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
1818
<PackageReference Include="Microsoft.Playwright" Version="1.53.0" />
1919
<PackageReference Include="ReportGenerator" Version="5.4.8" />

0 commit comments

Comments
 (0)