Skip to content

Commit 5d78927

Browse files
github-actions[bot]javiercnBrennanConroy
authored
Update .NET SDK to 9.0.100-preview.4.24201.1 (#54868)
* Update .NET SDK Update .NET SDK to version 9.0.100-preview.4.24201.1. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * Fix build break * no warning on tests * quarantine --------- Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: jacalvar <[email protected]> Co-authored-by: Brennan <[email protected]>
1 parent f305584 commit 5d78927

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,9 @@ dotnet_diagnostic.CA2014.severity = warning
254254
# CA2016: Forward the 'CancellationToken' parameter to methods that take one
255255
dotnet_diagnostic.CA2016.severity = warning
256256

257+
# CA2022: Avoid inexact read with `Stream.Read`
258+
dotnet_diagnostic.CA2022.severity = warning
259+
257260
# CA2200: Rethrow to preserve stack details
258261
dotnet_diagnostic.CA2200.severity = warning
259262

@@ -407,6 +410,8 @@ dotnet_diagnostic.CA2007.severity = suggestion
407410
dotnet_diagnostic.CA2008.severity = suggestion
408411
# CA2012: Use ValueTask correctly
409412
dotnet_diagnostic.CA2012.severity = suggestion
413+
# CA2022: Avoid inexact read with `Stream.Read`
414+
dotnet_diagnostic.CA2022.severity = suggestion
410415
# CA2201: Do not raise reserved exception types
411416
dotnet_diagnostic.CA2201.severity = suggestion
412417
# CA2249: Use string.Contains instead of string.IndexOf to improve readability.

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"sdk": {
3-
"version": "9.0.100-preview.3.24161.2"
3+
"version": "9.0.100-preview.4.24201.1"
44
},
55
"tools": {
6-
"dotnet": "9.0.100-preview.3.24161.2",
6+
"dotnet": "9.0.100-preview.4.24201.1",
77
"runtimes": {
88
"dotnet/x86": [
99
"$(MicrosoftNETCoreBrowserDebugHostTransportVersion)"

src/Components/CustomElements/src/Microsoft.AspNetCore.Components.CustomElements.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
BasePath="_content\$(PackageId)"
3131
CandidateAssets="@(_JsBuildOutput)"
3232
RelativePathFilter="**.js"
33+
RelativePathPattern="**"
3334
>
3435
<Output TaskParameter="Assets" ItemName="StaticWebAsset" />
3536
</DefineStaticWebAssets>

src/Components/test/E2ETest/Tests/CustomElementsTest.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure;
1313
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
1414
using Microsoft.AspNetCore.E2ETesting;
15+
using Microsoft.AspNetCore.InternalTesting;
1516
using OpenQA.Selenium;
1617
using Xunit.Abstractions;
1718

@@ -54,6 +55,7 @@ public void CanAddAndRemoveCustomElements()
5455
}
5556

5657
[Fact]
58+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54889")]
5759
public void CanUpdateSimpleParameters()
5860
{
5961
app.FindElement(By.Id("add-custom-element")).Click();
@@ -104,6 +106,7 @@ void ValidateSimpleParameterValues(int id, int clickCount)
104106
}
105107

106108
[Fact]
109+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54889")]
107110
public void CanUpdateComplexParameters()
108111
{
109112
app.FindElement(By.Id("add-custom-element")).Click();

0 commit comments

Comments
 (0)