diff options
author | grbd <garlicbready@googlemail.com> | 2018-01-08 01:02:31 +0000 |
---|---|---|
committer | grbd <garlicbready@googlemail.com> | 2018-01-08 01:02:31 +0000 |
commit | 14aa1087eb5af6f791965a5b8e245d9b7382b3cb (patch) | |
tree | d044808e582f32e4258a914e6a195706e962611d /Documentation | |
parent | Added initial bin ebuilds for dotnet core (diff) | |
download | dotnet-14aa1087eb5af6f791965a5b8e245d9b7382b3cb.tar.gz dotnet-14aa1087eb5af6f791965a5b8e245d9b7382b3cb.tar.bz2 dotnet-14aa1087eb5af6f791965a5b8e245d9b7382b3cb.zip |
Added initial docs for dotnet core
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/DotnetCore-Bin.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Documentation/DotnetCore-Bin.md b/Documentation/DotnetCore-Bin.md new file mode 100644 index 0000000..bc4a9a5 --- /dev/null +++ b/Documentation/DotnetCore-Bin.md @@ -0,0 +1,35 @@ +# DotNet Core + + +## Binary Packages + +The quickest and easiet way to install dotnet core for gentoo is to use one of the binary packages. + +Runtime: + + * =dotnet/dotnetcore-runtime-bin-2.0.4 + * =dotnet/dotnetcore-aspnet-bin-2.0.3 + +SDK: + + * =dotnet/dotnetcore-sdk-bin-2.1.3 + +The SDK package (2.1.3) already includes the runtime packages (2.0.4) for dotnet core. +The reason for including both is that the SDK is available under x64 platforms but not currently arm32 platforms (such as the Rpi) +So for the Rpi or other arm32 platforms you'll need to use just the runtime packages unless the application your running already has the runtime build in. + + +## SDK vs Runtime + +The SDK packages allow you to use the dotnet cli tool to compile / build C# Code into Managed Applications. +The runtime packages allow you to use the dotnet cli tool to run pre-compiled applications. + +Normally when you compile a dotnet core application, you have one of two options. + + * Compile it as a platform independent .dll file which doesn't include the runtime + * Compile it as a platform specific executable file which does include the runtime - using a runtime identifier + +For platform independent .dll files these require the runtime packages on the host to use the dotnet cli tool to run / call the dll to start them as an application. + + * https://stackoverflow.com/questions/43931827/how-to-run-asp-net-core-on-arm-based-custom-linux + |