From 95c7bf011ac3b849c63cfaf5584878232d223b71 Mon Sep 17 00:00:00 2001 From: Mariana Dematte Date: Wed, 25 Sep 2024 08:04:44 -0700 Subject: [PATCH] Add final branding VS17.12 (#10697) Part of #10665 Final branding for VS17.12. --- eng/Versions.props | 2 +- src/BuildCheck.UnitTests/EndToEndTests.cs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index 2d0626911d3..d2ea3fd097e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ - 17.12.0 + 17.12.0release 17.11.4 15.1.0.0 preview diff --git a/src/BuildCheck.UnitTests/EndToEndTests.cs b/src/BuildCheck.UnitTests/EndToEndTests.cs index 622609dc5f2..58891677b6a 100644 --- a/src/BuildCheck.UnitTests/EndToEndTests.cs +++ b/src/BuildCheck.UnitTests/EndToEndTests.cs @@ -276,7 +276,7 @@ public void EditorConfig_SeverityAppliedCorrectly(string BC0101Severity, string? } } - [Fact] + [Fact(Skip = "https://github.com/dotnet/msbuild/issues/10702")] public void CheckHasAccessToAllConfigs() { using (var env = TestEnvironment.Create()) @@ -454,7 +454,7 @@ public void NoEnvironmentVariableProperty_DeferredProcessing(bool warnAsError, b } } - [Theory] + [Theory(Skip = "https://github.com/dotnet/msbuild/issues/10702")] [InlineData("CheckCandidate", new[] { "CustomRule1", "CustomRule2" })] [InlineData("CheckCandidateWithMultipleChecksInjected", new[] { "CustomRule1", "CustomRule2", "CustomRule3" }, true)] public void CustomCheckTest_NoEditorConfig(string checkCandidate, string[] expectedRegisteredRules, bool expectedRejectedChecks = false) @@ -487,7 +487,7 @@ public void CustomCheckTest_NoEditorConfig(string checkCandidate, string[] expec } } - [Theory] + [Theory(Skip = "https://github.com/dotnet/msbuild/issues/10702")] [InlineData("CheckCandidate", "X01234", "error", "error X01234")] [InlineData("CheckCandidateWithMultipleChecksInjected", "X01234", "warning", "warning X01234")] public void CustomCheckTest_WithEditorConfig(string checkCandidate, string ruleId, string severity, string expectedMessage) @@ -514,7 +514,7 @@ public void CustomCheckTest_WithEditorConfig(string checkCandidate, string ruleI } } - [Theory] + [Theory(Skip = "https://github.com/dotnet/msbuild/issues/10702")] [InlineData("X01236", "Something went wrong initializing")] // These tests are for failure one different points, will be addressed in a different PR // https://github.com/dotnet/msbuild/issues/10522