diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a225f5b62fca4..b763006456e69 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -122,14 +122,14 @@ - + https://github.com/dotnet/arcade - 65260b148c869ada772a5843863c54737cd2361e + 05c72bb3c9b38138276a8029017f2ef905dcc7fa - + https://github.com/dotnet/arcade - 65260b148c869ada772a5843863c54737cd2361e + 05c72bb3c9b38138276a8029017f2ef905dcc7fa @@ -156,9 +156,9 @@ https://github.com/dotnet/roslyn 5d10d428050c0d6afef30a072c4ae68776621877 - + https://github.com/dotnet/arcade - 65260b148c869ada772a5843863c54737cd2361e + 05c72bb3c9b38138276a8029017f2ef905dcc7fa https://github.com/dotnet/roslyn-analyzers diff --git a/eng/common/templates-official/job/job.yml b/eng/common/templates-official/job/job.yml index 3d16b41c78c18..605692d2fb770 100644 --- a/eng/common/templates-official/job/job.yml +++ b/eng/common/templates-official/job/job.yml @@ -1,6 +1,7 @@ parameters: # Sbom related params enableSbom: true + runAsPublic: false PackageVersion: 9.0.0 BuildDropPath: '$(Build.SourcesDirectory)/artifacts' diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml index 07d317bf8f9a4..d1aeb92fcea51 100644 --- a/eng/common/templates/job/job.yml +++ b/eng/common/templates/job/job.yml @@ -4,6 +4,7 @@ parameters: componentGovernanceIgnoreDirectories: '' # Sbom related params enableSbom: true + runAsPublic: false PackageVersion: 9.0.0 BuildDropPath: '$(Build.SourcesDirectory)/artifacts' diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 9574f4eb9df09..22954477a5747 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -900,7 +900,7 @@ function IsWindowsPlatform() { } function Get-Darc($version) { - $darcPath = "$TempDir\darc\$(New-Guid)" + $darcPath = "$TempDir\darc\$([guid]::NewGuid())" if ($version -ne $null) { & $PSScriptRoot\darc-init.ps1 -toolpath $darcPath -darcVersion $version | Out-Host } else { diff --git a/global.json b/global.json index 2e5746985615d..aa7ce4c9cd60a 100644 --- a/global.json +++ b/global.json @@ -1,18 +1,18 @@ { "sdk": { - "version": "9.0.100-preview.7.24407.12", + "version": "9.0.100-rc.2.24474.11", "allowPrerelease": false, "rollForward": "patch" }, "tools": { - "dotnet": "9.0.100-preview.7.24407.12", + "dotnet": "9.0.100-rc.2.24474.11", "vs": { "version": "17.8.0" } }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24459.6", - "Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.24459.6", + "Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24509.3", + "Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.24509.3", "Microsoft.Build.Traversal": "3.4.0" } } diff --git a/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicEditAndContinue.cs b/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicEditAndContinue.cs index ada9330d18438..0231d2cd947d8 100644 --- a/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicEditAndContinue.cs +++ b/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicEditAndContinue.cs @@ -46,7 +46,7 @@ public override async Task InitializeAsync() await TestServices.SolutionExplorer.AddProjectAsync(ProjectName, _projectTemplate, LanguageNames.VisualBasic, HangMitigatingCancellationToken); } - [IdeFact] + [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] public async Task UpdateActiveStatementLeafNode() { await TestServices.Editor.SetTextAsync(@" @@ -78,7 +78,7 @@ End Module await TestServices.Debugger.CheckExpressionAsync("names(1)", "String", "\"bar\"", HangMitigatingCancellationToken); } - [IdeFact] + [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] public async Task AddTryCatchAroundActiveStatement() { await TestServices.Editor.SetTextAsync(@" @@ -107,7 +107,7 @@ Catch ex As Exception await TestServices.EditorVerifier.CurrentLineTextAsync(" End Try", cancellationToken: HangMitigatingCancellationToken); } - [IdeFact] + [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] public async Task EditLambdaExpression() { await TestServices.Editor.SetTextAsync(@" @@ -164,7 +164,7 @@ await TestServices.Workspace.WaitForAllAsyncOperationsAsync( Assert.Empty(await TestServices.ErrorList.GetBuildErrorsAsync(HangMitigatingCancellationToken)); } - [IdeFact] + [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] public async Task EnCWhileDebuggingFromImmediateWindow() { await TestServices.Editor.SetTextAsync(@" @@ -227,7 +227,7 @@ End Module await TestServices.Workspace.WaitForAsyncOperationsAsync(FeatureAttribute.Workspace, cancellationToken); } - [IdeFact] + [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] public async Task MultiProjectDebuggingWhereNotAllModulesAreLoaded() { await SetupMultiProjectSolutionAsync(HangMitigatingCancellationToken); @@ -251,7 +251,7 @@ await TestServices.Workspace.WaitForAllAsyncOperationsAsync( AssertEx.Empty(await TestServices.ErrorList.GetErrorsAsync(HangMitigatingCancellationToken)); } - [IdeFact] + [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] public async Task LocalsWindowUpdatesAfterLocalGetsItsTypeUpdatedDuringEnC() { await TestServices.Editor.SetTextAsync(@" @@ -275,7 +275,7 @@ End Module Assert.Equal(("Single", "10"), await TestServices.LocalsWindow.GetEntryAsync(["goo"], HangMitigatingCancellationToken)); } - [IdeFact] + [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] public async Task LocalsWindowUpdatesCorrectlyDuringEnC() { await TestServices.Editor.SetTextAsync(@" @@ -309,7 +309,7 @@ End Module Assert.Equal(("Long", "444"), await TestServices.LocalsWindow.GetEntryAsync(["lLng"], HangMitigatingCancellationToken)); } - [IdeFact] + [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] public async Task WatchWindowUpdatesCorrectlyDuringEnC() { await TestServices.Editor.SetTextAsync(@" diff --git a/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicGoToDefinition.cs b/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicGoToDefinition.cs index b6adfd645e916..62c96998f1c3e 100644 --- a/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicGoToDefinition.cs +++ b/src/VisualStudio/IntegrationTest/New.IntegrationTests/VisualBasic/BasicGoToDefinition.cs @@ -47,7 +47,7 @@ Dim gibberish As SomeClass Assert.False(await TestServices.Shell.IsActiveTabProvisionalAsync(HangMitigatingCancellationToken)); } - [IdeTheory, CombinatorialData] + [IdeTheory(Skip = "https://github.com/dotnet/roslyn/issues/75458"), CombinatorialData] public async Task ObjectBrowserNavigation(bool navigateToObjectBrowser) { var globalOptions = await TestServices.Shell.GetComponentModelServiceAsync(HangMitigatingCancellationToken); @@ -85,7 +85,7 @@ End Class } } - [IdeFact] + [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] public async Task GoToBaseFromMetadataAsSource() { var project = ProjectName; diff --git a/src/VisualStudio/IntegrationTest/New.IntegrationTests/Workspace/WorkspaceBase.cs b/src/VisualStudio/IntegrationTest/New.IntegrationTests/Workspace/WorkspaceBase.cs index a58a5bf222fcf..afa744e934bda 100644 --- a/src/VisualStudio/IntegrationTest/New.IntegrationTests/Workspace/WorkspaceBase.cs +++ b/src/VisualStudio/IntegrationTest/New.IntegrationTests/Workspace/WorkspaceBase.cs @@ -32,7 +32,7 @@ protected async Task InitializeWithDefaultSolution() await TestServices.SolutionExplorer.RestoreNuGetPackagesAsync(ProjectName, HangMitigatingCancellationToken); } - [IdeFact] + [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/75458")] public async Task OpenCSharpThenVBSolution() { await InitializeWithDefaultSolution();