diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 0040c87ba8d..23a16da360f 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,12 +6,6 @@ This file should be imported by eng/Versions.props - 17.15.0-preview-25460-104 - 17.15.0-preview-25460-104 - 17.15.0-preview-25460-104 - 5.0.0-2.25460.104 - 5.0.0-2.25460.104 - 5.0.0-2.25460.104 10.0.0-beta.25460.104 10.0.0-beta.25460.104 10.0.0-beta.25460.104 @@ -34,12 +28,6 @@ This file should be imported by eng/Versions.props - $(MicrosoftBuildFrameworkPackageVersion) - $(MicrosoftBuildTasksCorePackageVersion) - $(MicrosoftBuildUtilitiesCorePackageVersion) - $(MicrosoftCodeAnalysisCSharpPackageVersion) - $(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion) - $(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion) $(MicrosoftDotNetArcadeSdkPackageVersion) $(MicrosoftDotNetBuildTasksTemplatingPackageVersion) $(MicrosoftDotNetHelixSdkPackageVersion) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f3daf975bf1..8f6c4821f02 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -62,30 +62,6 @@ https://github.com/dotnet/dotnet eac14590f69f6876d418cef9e8fdd3f44f6ef0b2 - - https://github.com/dotnet/dotnet - eac14590f69f6876d418cef9e8fdd3f44f6ef0b2 - - - https://github.com/dotnet/dotnet - eac14590f69f6876d418cef9e8fdd3f44f6ef0b2 - - - https://github.com/dotnet/dotnet - eac14590f69f6876d418cef9e8fdd3f44f6ef0b2 - - - https://github.com/dotnet/dotnet - eac14590f69f6876d418cef9e8fdd3f44f6ef0b2 - - - https://github.com/dotnet/dotnet - eac14590f69f6876d418cef9e8fdd3f44f6ef0b2 - - - https://github.com/dotnet/dotnet - eac14590f69f6876d418cef9e8fdd3f44f6ef0b2 - diff --git a/eng/Versions.props b/eng/Versions.props index ab4f7d976d5..dc41fdad138 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -16,6 +16,23 @@ False + + + 17.14.8 + 17.14.8 + 17.14.8 + 4.14.0 + 4.14.0 + 4.14.0 + + + 17.15.0 + 17.15.0 + 17.15.0 + 5.0.0 + 5.0.0 + 5.0.0 + 1.1.3-beta1.24423.1 1.1.3-beta1.24352.1 diff --git a/src/EFCore.Design/Design/Internal/DbContextOperations.cs b/src/EFCore.Design/Design/Internal/DbContextOperations.cs index 00cf2f787dd..c0a1e9e096c 100644 --- a/src/EFCore.Design/Design/Internal/DbContextOperations.cs +++ b/src/EFCore.Design/Design/Internal/DbContextOperations.cs @@ -305,10 +305,14 @@ private IReadOnlyList PrecompileQueries( { workspace = MSBuildWorkspace.Create(); workspace.LoadMetadataForReferencedProjects = true; - workspace.RegisterWorkspaceFailedHandler(e => +#pragma warning disable CS0612 // Obsolete +#pragma warning disable CS0618 // Obsolete + workspace.WorkspaceFailed += (_, e) => { _reporter.WriteError(DesignStrings.MSBuildWorkspaceFailure(e.Diagnostic.Kind, e.Diagnostic.Message)); - }); + }; +#pragma warning restore CS0618 // Obsolete +#pragma warning restore CS0612 // Obsolete project = workspace.OpenProjectAsync(_project).GetAwaiter().GetResult(); } catch (Exception ex)