is there any easy way or documentation or way to upgrade (or change) an existing project from ASP.NET Core on .Netframework 4.6 to .Net Core 2.1 ?
2 Answer(s)
-
0
You can read up on <a class="postlink" href="https://volosoft.com/migrating-from-asp-net-mvc-5x-to-asp-net-core/">https://volosoft.com/migrating-from-asp ... -net-core/</a>
And discussion here <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/2406">https://github.com/aspnetboilerplate/as ... ssues/2406</a>
-
0
@tugrulkarakaya for AspNet Zero's ASP.NET Core version, you can just change the TargetFramework of the projects to .NET Core 2.1 and it should work just like that.
There might be some problems if the parts you write is not compatible with .NET Core. In that case, we can try to help you as well.