Skip to content

Commit b5087ba

Browse files
Update .NET SDK to 10.0.100-preview.6.25311.101 (#1479)
* Update .NET SDK Update .NET SDK to version 10.0.100-preview.6.25311.101. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-version: 10.0.100-preview.6.25311.101 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <[email protected]> * Bump .NET NuGet packages Bumps .NET dependencies to their latest versions for the .NET 10.0.100-preview.6.25311.101 SDK. Bumps Microsoft.AspNetCore.Mvc.Testing from 10.0.0-preview.5.25281.1 to 10.0.0-preview.6.25311.101. Bumps Microsoft.AspNetCore.OpenApi from 10.0.0-preview.5.25281.1 to 10.0.0-preview.6.25311.101. Bumps Microsoft.EntityFrameworkCore.Sqlite from 10.0.0-preview.5.25280.105 to 10.0.0-preview.6.25311.101. --- updated-dependencies: - dependency-name: Microsoft.AspNetCore.Mvc.Testing dependency-version: 10.0.0-preview.6.25311.101 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: Microsoft.AspNetCore.OpenApi dependency-version: 10.0.0-preview.6.25311.101 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: Microsoft.EntityFrameworkCore.Sqlite dependency-version: 10.0.0-preview.6.25311.101 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: costellobot <[email protected]> * Use ZipFile.ExtractToDirectoryAsync Use new `ZipFile.ExtractToDirectoryAsync()` method. --------- Signed-off-by: costellobot <[email protected]> Co-authored-by: martincostello <[email protected]>
1 parent 46a1aae commit b5087ba

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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.25280.105",
3+
"version": "10.0.100-preview.6.25311.101",
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.5.25310.82" />
14-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0-preview.5.25281.1" />
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0-preview.5.25280.105" />
14+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0-preview.6.25311.101" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0-preview.6.25311.101" />
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.25281.1" />
16+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0-preview.6.25311.101" />
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)