ASP.NET Core web app home page

Resolving the Version conflicts for a downgraded .NET Core 2.1/2.2 web app project

This post was most recently updated on July 31st, 2022.

2 min read.

I ran into compatibility issues with .NET Core 2.2 on my Azure Functions projects, so I downgraded my whole solution (an Azure Functions project, a helpers library, and a web application project) to 2.1, and got rid of that particular nuisance.

This introduced a few new issues, though – namely, I started getting this error whenever trying to restore nuget packages or build the project:

NU1107	Version conflict detected for Microsoft.AspNetCore.Razor.Language. Install/reference Microsoft.AspNetCore.Razor.Language 2.2.0 directly to project [projectname] to resolve this issue. 
 [projectname] -> Microsoft.VisualStudio.Web.CodeGeneration.Design 2.2.0 -> Microsoft.VisualStudio.Web.CodeGenerators.Mvc 2.2.0 -> Microsoft.VisualStudio.Web.CodeGeneration 2.2.0 -> Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore 2.2.0 -> Microsoft.VisualStudio.Web.CodeGeneration.Core 2.2.0 -> Microsoft.VisualStudio.Web.CodeGeneration.Templating 2.2.0 -> Microsoft.AspNetCore.Razor.Language (>= 2.2.0) 
 [projectname] -> Microsoft.AspNetCore.App 2.1.1 -> Microsoft.AspNetCore.Razor.Language (>= 2.1.1 && < 2.2.0).

This is apparently caused by a weirdish hardcoded dependency in .csproj file. You don’t normally run into this issue, but I suppose when you create the project with one .NET Core version (like 2.2) and then downgrade (to 2.1, in my case), you could fall into this trap.

Even though this example is for versions 2.2 and 2.1 of .NET Core, I’ve seen the same issue happen with other versions – so I don’t think the issue is exclusive to these versions of the packages.

Solution

So NuGet Package Manager is not the way to go. But you can still modify the project file directly!

The instructions that the error gives, are kind of correct – but at least for me, NuGet Package Manager would not let me install the 2.2.0 version of Microsoft.AspNetcore.Razor.Language because the project is being built on 2.1, it requires a version LOWER THAN 2.2.0 of said package.

In my case, the solution to this particular instance of package version conflicts was this:

Time needed: 50 minutes

How to resolve .NET package conflicts

  1. Modify the .csproj file of your Visual Studio project directly

    This can be done by unloading the project, and clicking “modify the project file”

  2. Add the following lines into the package references ItemGroup

    <PackageReference Include="Microsoft.AspNetCore.Razor.Language" Version="2.2.0" />

    <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.2.0" />

    <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.2.0" />

  3. Reload the project

  4. Rebuild (or clean + debug)

Try running your project. If your issue was the same as mine, you should be good to go now!


Still not good to go? Maybe your issue is a bit different. Let me know in the comments section below and let’s see if we can figure it out!

mm
3.7 3 votes
Article Rating
Subscribe
Notify of
guest

7 Comments
most voted
newest oldest
Inline Feedbacks
View all comments