diff --git a/aspnetcore/migration/22-to-30.md b/aspnetcore/migration/22-to-30.md index a4d315ab2a..917dd24390 100644 --- a/aspnetcore/migration/22-to-30.md +++ b/aspnetcore/migration/22-to-30.md @@ -25,16 +25,6 @@ This article explains how to update an existing ASP.NET Core 2.2 project to ASP. * Remove any `` to the [Microsoft.AspNetCore.All](xref:fundamentals/metapackage) or [Microsoft.AspNetCore.App](xref:fundamentals/metapackage-app) metapackage. - There's a known issue in Preview 1: projects that don't start with `` get compiler or runtime errors due to missing `Microsoft.AspNetCore.*` assemblies. This is most often the case for test projects and class libraries. The workaround is to add the following to the *.csproj* file. - - ```xml - - - - ``` - - For more information, see [NuGet/Home issue #7342](https://github.com/NuGet/Home/issues/7342). - * Update the `Version` on remaining `` elements for `Microsoft.AspNetCore.*` packages to the current preview (for example, 3.0.0-preview-18579-0053). If there is no 3.0 version of a package, the package might have been deprecated in 3.0. Many of these are part of `Microsoft.AspNetCore.App` and should not be referenced individually anymore. For a preliminary list of packages no longer produced in 3.0, see [aspnet/AspNetCore #3756](https://github.com/aspnet/AspNetCore/issues/3756).