I have the following code in a csproj
file:
<TargetFramework>netcoreapp1.0</TargetFramework>
In the NuGet package manager, it says that I have Microsoft.NETCore.App version 1.0.5
Now let's say I have the following code in the same csproj
file:
<TargetFramework>netcoreapp1.0</TargetFramework>
<RuntimeFrameworkVersion>1.1.4</RuntimeFrameworkVersion>
The NuGet package manager will now say that I have Microsoft.NETCore.App version 1.1.4
I'm essentially trying to use the latest framework before .NETCore 2.0 (having some EF issues when I converted) which would be .NETCore 1.1.4, but the multiple Framework attributes in csproj
make me unsure which tag to use. I was unable to find any resources that clearly distinguishes the differences between the two.
A target framework moniker (TFM) is a standardized token format for specifying the target framework of a . NET app or library.
NET Core is installed on Windows is: Press Windows + R. Type cmd. On the command prompt, type dotnet --version.
NET Core Project. Open your project's source folder and, in the address bar, type "cmd" and press Enter. It will open the command prompt with the project path. Execute the following command: dotnet --version .
The runtime includes everything you need to run . NET Core applications. The runtime is also included in the SDK.
The RuntimeFrameworkVersion is specific to .NET Core / netcoreapp. The SDK will inject a dependency on Microsoft.NETCore.App for the version that RuntimeFrameworkVersion is set to or use the latest version it knows about for .NET Core < 2.0.
The TargetFramework is used by NuGet to resolve dependencies and determine the assets to be used for compiling and building the application. (Behind the scenes, a few more properties like TargetFrameworkMoniker and TargetFrameworkVersion come into play but the SDK abstracts it to a simpler TargetFramework for frameworks it knows about).
In .NET Core 2.0, the version of RuntimeFrameworkVersion will always be 2.0.0 for "portable applications" (non-self contained) because the implementation of the framework is no longer provided by the dependencies of Microsoft.NETCore.App and this NuGet package is only used to provide reference assemblies for compilation. Show activity on this post.
-- .Net Runtime is a component of .Net Framework. .Net framework is the set of assemblies, namespaces, classes that you can use to create applications. .Net Runtime runs your compiled code.
The TargetFramework
is used by NuGet to resolve dependencies and determine the assets to be used for compiling and building the application. (Behind the scenes, a few more properties like TargetFrameworkMoniker
and TargetFrameworkVersion
come into play but the SDK abstracts it to a simpler TargetFramework
for frameworks it knows about).
The RuntimeFrameworkVersion
is specific to .NET Core / netcoreapp
. The SDK will inject a dependency on Microsoft.NETCore.App
for the version that RuntimeFrameworkVersion
is set to or use the latest version it knows about for .NET Core < 2.0. The resolved version is then written to the runtimeconfig.json
file for the .NET Core host framework resolver to resolve the version of the shared framework to load (=> .NET Core 1.1.4 runtime for example).
The reason you are able to use 1.1.*
for netcoreapp1.0
is because the NuGet package actually contains the necessary assets to build .NET Core 1.0.* applications. However the tooling doesn't know this so you'll get a .NET Core 1.0 app but it will be loaded by the 1.1 framework because that's what ends up in the runtimeconfig.json
file.
The important difference is:
Microsoft.NETCore.App
is used.
dotnet publish -r win7-x64
)1.0.3
but you have the 1.0.5
runtime installed, the 1.0.5
runtime will be used automatically.RuntimeFrameworkVersion
and a new version of the SDK is released that knows about newer patch versions of .NET Core, it will use the newest version automatically. If you set the version explicitly, you may not be up-to-date without editing the project file.RuntimeFrameworkVersion
is also the minimum runtime that the application will load - if you set it to 1.0.4
and try to run on a machine that only has 1.0.3
installed, the application will not start unless you edit the runtimeconfig.json
file.RuntimeFrameworkVersion
can be set to a floating version, which is useful when targeting preview versions or daily builds, e.g. 2.1.0-preview1-*
would resolve to the newest preview1
version available on the configured NuGet feeds.Apart from these, there are only a few reasons to build using a higher version of Microsoft.NETCore.App
, like a build bugfix for the DiaSymReader
component.
In .NET Core 2.0, the version of RuntimeFrameworkVersion
will always be 2.0.0
for "portable applications" (non-self contained) because the implementation of the framework is no longer provided by the dependencies of Microsoft.NETCore.App
and this NuGet package is only used to provide reference assemblies for compilation.
From the docs, you should use runtimeframeworkversion only
If you need a specific version of the runtime when targeting .NET Core, you should use the property in your project (for example, 1.0.4) instead of referencing the metapackage.
https://learn.microsoft.com/en-us/dotnet/core/tools/csproj
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With