Having trouble converting my .Net Core 2.1 project to .Net Core 2.0. I changed the target build type in my project solution properties as well as target framework in my .csproj file. Visual Studio will not let me build this application because the project is still inherently .Net Core 2.1.
Asked
Active
Viewed 2,581 times
1
-
3Any particular reason you want to downgrade? – DavidG Jun 28 '18 at 20:47
-
1[Upgrade you must.](https://mitchelsellers.com/blogs/2018/06/27/net-core-21-upgrade-you-must) – mason Jun 28 '18 at 20:51
-
Using the project on software that can only work with 2.0 and before – HelpPlease Jun 28 '18 at 21:12
-
Can you post your `csproj` file? – DavidG Jun 28 '18 at 21:26
-
Don't forget core 2.0 specific support ends in October 1. – Mark Fitzpatrick Aug 10 '18 at 16:54
3 Answers
2
I've had a similar issue recently. Cleared my packages folder and vs cache. Restarted vs, and everthing did build fine.

Melvin Vermeer
- 126
- 1
1
I changed the target framework in my .csproj file and what did the trick for me was reinstalling older NuGet packages.

HelpPlease
- 31
- 1
- 4