šŸ³ļøā€šŸŒˆ Happy Pride month!

.NET Core - Project version mismatch

by Matt Fantinel
03 Jun 2019 - 1 min read

This problem usually happens when you're working on a solution with multiple projects that were created using different versions of the .NET SDK.

The project was restored using Microsoft.NETCore.App version x.x.x, but with current settings, version y.y.y would be used instead

You may encounter this error when running dotnet build or maybe only on dotnet publish. In any case, the best way to get rid of this problem for good is the following:

  1. On the folder where your .sln file resides, create a new file named Directory.Build.props. If you're not working with a solution (not using Visual Studio), you can use create it on the root directory of your repository (usually where .gitignore is;
  2. With a text editor, add the following content to it:
Directory.Build.props
xml
<Project>
  <PropertyGroup>
    <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
    <GenerateFullPaths>true</GenerateFullPaths>
    <LangVersion>latest</LangVersion>
  </PropertyGroup>
</Project>

What these properties do is make your projects always restore and compile using the latest version available.

Try running the command again. If all went right, it should be compiling successfully now!

In case it doesn't work for you, you can add these lines manually on each of the .csproj files.

Thanks for reading!

Did this blog post change your life? Or maybe I made a mistake that ruined your day? You can always send me an email to tell me about it.

hello@fantinel.dev

Written by

Matt Fantinel

I’m a web developer trying to figure out this weird thing called the internet. I write about development, the web, games, music, and whatever else I feel like writing about!

About