Reputation: 1
Im doing a project with .net Framework , but to run on the linux i need .net Core..
I heard that it is possible to change .net Core to .net Framework only with changes on the project.csproj with this:
<TargetFramework>netcoreapp1.1</TargetFramework>
to
<TargetFramework>v4.5.2</TargetFramework>
and i tried to do the opposite , but i got some erros on the project...
There's a way to do that?
Thanks!
Upvotes: 0
Views: 168
Reputation: 112
You can not switch a .NET Framework project to .NET Core that easy. You might change an empty project but not one you already started coding. Possibly you'll need to rewrite or start from scratch.
There are some major differences between two
Upvotes: 2