Are you looking for an employer who cares about you as a person and where you feel involved in everything that concerns you? Welcome to JellyHive!
Who are we? We are a successful IT consultant company and our philosophy is that the
company is our employees.
Who are you? You are a system developer (fullstack, frontend, backend), and/or maybe
also a scrum master, test lead, devops etc.
What we offer you Participation in developing the company with generous benefits.
According to Microsoft (https://docs.microsoft.com/en-us/dotnet/core/migration/20-21) it’s super simple to migrate from .NET Core 2.0 to 2.1. Just change netcoreapp2.0
to netcoreapp2.1
, remove some CLI tools and you’re done!
When we tried this approach we ran into a NETSDK1061
issue. Below is a step by step on how we fixed it.
Note that there might be a few “Restart Visual Studio” steps missing from this guide. If things doesn’t work try restarting Visual Studio.
netcoreapp2.0
to netcoreapp2.1
in your csproj files (remember to also change any test projects)NETSDK1061: The project was restored using Microsoft.NETCore.App version 2.1.3, but with current settings, version 2.1.3-servicing-26724-03 would be used instead. To resolve this issue, make sure the same settings are used for restore and for subsequent operations such as build or publish. Typically this issue can occur if the RuntimeIdentifier property is set during build or publish but not during restore. For more information, see https://aka.ms/dotnet-runtime-patch-selection.
NETSDK1061: The project was restored using Microsoft.NETCore.App version 2.1.3, but with current settings, version 2.1.0 would be used instead. To resolve this issue, make sure the same settings are used for restore and for subsequent operations such as build or publish. Typically this issue can occur if the RuntimeIdentifier property is set during build or publish but not during restore. For more information, see https://aka.ms/dotnet-runtime-patch-selection
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
to the csproj files of the projects in the error list. <PropertyGroup>
<Description>My core app</Description>
<Authors>...</Authors>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
</PropertyGroup>
Reinstall .NET Core SDK issue and work around: https://github.com/dotnet/cli/issues/9897#issuecomment-417088742
TargetLatestRuntimePatch issue and work around: https://github.com/dotnet/cli/issues/9624