Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Core, Standard ... what a mess

Core, Standard ... what a mess

Scheduled Pinned Locked Moved The Lounge
csharpquestionasp-netdotnetwinforms
25 Posts 16 Posters 1 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Sander RosselS Sander Rossel

    I assume the WinForms project is .NET Framework (it could be .NET Core since last month). .NET Framework and .NET Core are not fully compatible and while I believe it's possible to reference .NET Core projects in .NET Framework and vice versa it's not recommended. Instead, you should use .NET Standard, the common denominator between the two. You can simply add a new project in Visual Studio and pick the "Class Library (.NET Standard)" template. This project will be usable in .NET Framework and .NET Core projects (but it can't run on its own since it has no runtime). Be sure to write your .NET Standard project in the correct version: .NET Standard | Microsoft Docs[^]

    Best, Sander sanderrossel.com Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

    R Offline
    R Offline
    Reelix
    wrote on last edited by
    #9

    > Instead, you should use .NET Standard, the common denominator between the two. Since when do Linux and Mac natively support .NET Standard, and since when do all Servers inherently have it installed? It's almost as if people have specific use-case scenarios for requiring .NET Core...

    -= Reelix =-

    A Sander RosselS 2 Replies Last reply
    0
    • B BillWoodruff

      Recently a demon made me create a Core project, and then attempt to use it in a WinForms app. And, yes, I altered the project files of both to enable C# 8. The Core project does nothing but define a stupid little Class with one method that writes to the Console.. So, okay, I add a reference to the Core project dll to the WinForm app. I attempt to use it ... well, I m not surprised it didn't work, but was surprised to get a file-not-found error:

      Quote:

      System.IO.FileNotFoundException HResult=0x80070002 Message=Could not load file or assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Source=TestUsingCore StackTrace: at TestUsingCore.Form1.Form1_Load(Object sender, EventArgs e) in ...

      So, I set out to do some research, came across this article by Scott Hanselmann: [^]. I have great respect for Scott, and have learned a lot from his writing over the years; however, this article, titled "How to reference a .NET Core library in WinForms - Or, .NET Standard Explained," ignores the question in the title and ends up recommending ".NET Standard" as if that explains anything. Was Scott avoiding the simple answer that you cannot use a Core project/class in a WinForm app for some reason ? Well, okay, Scott wrote that in June, 2017: that's decades ago in .NET's evolutionary time-scale. To turn my headache into a full-on migraine, I then re-read this article: "How to port desktop applications to .NET Core 3.0" [^]. Whaddya think ?

      «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

      D Offline
      D Offline
      Davyd McColl
      wrote on last edited by
      #10

      You can use a netstandard library, remembering: Netstandard is just an API specification. The underlying framework to use could be full framework, core or mono. Which version of each depends on the netstandard version you're targeting, for instance, netstandard2.0 ~ net framework 4.6.2 / netcore 2.2 (iirc) So a netstandard library won't provide the framework (just like other libraries won't) and relies on a shimming layer to get between the runtime you're providing (typically core or framework) and it's logic, and back again. Just install the Nuget packed System.Runtime. On the other hand, I've had some assembly binding woes with netstandard stuff, but that's b cause msbuild is being dumb and trying to upgrade dependencies (even ones that I've installed from nuget) to point at shined versions from machine-local netstandard, a problem which may not become evident until you have a significantly complex dependency chain, and simplified greatly if you can just update everything to latest (I can't, just yet) YMMV

      1 Reply Last reply
      0
      • R Reelix

        > Instead, you should use .NET Standard, the common denominator between the two. Since when do Linux and Mac natively support .NET Standard, and since when do all Servers inherently have it installed? It's almost as if people have specific use-case scenarios for requiring .NET Core...

        -= Reelix =-

        A Offline
        A Offline
        adambl
        wrote on last edited by
        #11

        It may not have native support, but .Net Standard is implemented by a number of platforms (including Mono, Xamarin): .NET Standard | Microsoft Docs[^].

        R 1 Reply Last reply
        0
        • B BillWoodruff

          Recently a demon made me create a Core project, and then attempt to use it in a WinForms app. And, yes, I altered the project files of both to enable C# 8. The Core project does nothing but define a stupid little Class with one method that writes to the Console.. So, okay, I add a reference to the Core project dll to the WinForm app. I attempt to use it ... well, I m not surprised it didn't work, but was surprised to get a file-not-found error:

          Quote:

          System.IO.FileNotFoundException HResult=0x80070002 Message=Could not load file or assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Source=TestUsingCore StackTrace: at TestUsingCore.Form1.Form1_Load(Object sender, EventArgs e) in ...

          So, I set out to do some research, came across this article by Scott Hanselmann: [^]. I have great respect for Scott, and have learned a lot from his writing over the years; however, this article, titled "How to reference a .NET Core library in WinForms - Or, .NET Standard Explained," ignores the question in the title and ends up recommending ".NET Standard" as if that explains anything. Was Scott avoiding the simple answer that you cannot use a Core project/class in a WinForm app for some reason ? Well, okay, Scott wrote that in June, 2017: that's decades ago in .NET's evolutionary time-scale. To turn my headache into a full-on migraine, I then re-read this article: "How to port desktop applications to .NET Core 3.0" [^]. Whaddya think ?

          «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

          J Offline
          J Offline
          Jacquers
          wrote on last edited by
          #12

          Maybe this will help: [Desktop and .NET Core 101 | Channel 9](https://channel9.msdn.com/Series/Desktop-and-NET-Core-101/?WT.mc\_id=Educationaldesktop-c9-niner)

          1 Reply Last reply
          0
          • B BillWoodruff

            Recently a demon made me create a Core project, and then attempt to use it in a WinForms app. And, yes, I altered the project files of both to enable C# 8. The Core project does nothing but define a stupid little Class with one method that writes to the Console.. So, okay, I add a reference to the Core project dll to the WinForm app. I attempt to use it ... well, I m not surprised it didn't work, but was surprised to get a file-not-found error:

            Quote:

            System.IO.FileNotFoundException HResult=0x80070002 Message=Could not load file or assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Source=TestUsingCore StackTrace: at TestUsingCore.Form1.Form1_Load(Object sender, EventArgs e) in ...

            So, I set out to do some research, came across this article by Scott Hanselmann: [^]. I have great respect for Scott, and have learned a lot from his writing over the years; however, this article, titled "How to reference a .NET Core library in WinForms - Or, .NET Standard Explained," ignores the question in the title and ends up recommending ".NET Standard" as if that explains anything. Was Scott avoiding the simple answer that you cannot use a Core project/class in a WinForm app for some reason ? Well, okay, Scott wrote that in June, 2017: that's decades ago in .NET's evolutionary time-scale. To turn my headache into a full-on migraine, I then re-read this article: "How to port desktop applications to .NET Core 3.0" [^]. Whaddya think ?

            «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

            M Offline
            M Offline
            Marc Clifton
            wrote on last edited by
            #13

            BillWoodruff wrote:

            Whaddya think ?

            Why would you want to reference a Core project in a WinForm app? Why would you want to port a desktop application to .NET Core? If I wrote a blog about those two questions, they would be very short: "I wouldn't." And while I have written .NET and .NET Core that work together, they work together over a communication protocol, like HTTPS! :laugh:

            Latest Articles:
            Client-Side TypeScript without ASP.NET, Angular, etc.

            N 1 Reply Last reply
            0
            • B BillWoodruff

              Recently a demon made me create a Core project, and then attempt to use it in a WinForms app. And, yes, I altered the project files of both to enable C# 8. The Core project does nothing but define a stupid little Class with one method that writes to the Console.. So, okay, I add a reference to the Core project dll to the WinForm app. I attempt to use it ... well, I m not surprised it didn't work, but was surprised to get a file-not-found error:

              Quote:

              System.IO.FileNotFoundException HResult=0x80070002 Message=Could not load file or assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Source=TestUsingCore StackTrace: at TestUsingCore.Form1.Form1_Load(Object sender, EventArgs e) in ...

              So, I set out to do some research, came across this article by Scott Hanselmann: [^]. I have great respect for Scott, and have learned a lot from his writing over the years; however, this article, titled "How to reference a .NET Core library in WinForms - Or, .NET Standard Explained," ignores the question in the title and ends up recommending ".NET Standard" as if that explains anything. Was Scott avoiding the simple answer that you cannot use a Core project/class in a WinForm app for some reason ? Well, okay, Scott wrote that in June, 2017: that's decades ago in .NET's evolutionary time-scale. To turn my headache into a full-on migraine, I then re-read this article: "How to port desktop applications to .NET Core 3.0" [^]. Whaddya think ?

              «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

              R Offline
              R Offline
              realJSOP
              wrote on last edited by
              #14

              The latest version of Core supports WinForms. I don't understand why there's an issue. Of course, I don't understand why anyone would write Core apps to begin with, so there is that. (No, I don't concern myself with "cross platform" crap.) IMHO, Core and Docker are solutions looking for a problem. Of course, I'm old and resist change in any disguise.

              ".45 ACP - because shooting twice is just silly" - JSOP, 2010
              -----
              You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
              -----
              When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

              1 Reply Last reply
              0
              • B BillWoodruff

                Recently a demon made me create a Core project, and then attempt to use it in a WinForms app. And, yes, I altered the project files of both to enable C# 8. The Core project does nothing but define a stupid little Class with one method that writes to the Console.. So, okay, I add a reference to the Core project dll to the WinForm app. I attempt to use it ... well, I m not surprised it didn't work, but was surprised to get a file-not-found error:

                Quote:

                System.IO.FileNotFoundException HResult=0x80070002 Message=Could not load file or assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Source=TestUsingCore StackTrace: at TestUsingCore.Form1.Form1_Load(Object sender, EventArgs e) in ...

                So, I set out to do some research, came across this article by Scott Hanselmann: [^]. I have great respect for Scott, and have learned a lot from his writing over the years; however, this article, titled "How to reference a .NET Core library in WinForms - Or, .NET Standard Explained," ignores the question in the title and ends up recommending ".NET Standard" as if that explains anything. Was Scott avoiding the simple answer that you cannot use a Core project/class in a WinForm app for some reason ? Well, okay, Scott wrote that in June, 2017: that's decades ago in .NET's evolutionary time-scale. To turn my headache into a full-on migraine, I then re-read this article: "How to port desktop applications to .NET Core 3.0" [^]. Whaddya think ?

                «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

                F Offline
                F Offline
                Forogar
                wrote on last edited by
                #15

                Just do it all with ASP.NET for the internet or WinForms for everything else. Those pretentious people who use Mac or Linux need to learn to use Windows (and get a haircut)! ;P

                - I would love to change the world, but they won’t give me the source code.

                1 Reply Last reply
                0
                • M Marc Clifton

                  BillWoodruff wrote:

                  Whaddya think ?

                  Why would you want to reference a Core project in a WinForm app? Why would you want to port a desktop application to .NET Core? If I wrote a blog about those two questions, they would be very short: "I wouldn't." And while I have written .NET and .NET Core that work together, they work together over a communication protocol, like HTTPS! :laugh:

                  Latest Articles:
                  Client-Side TypeScript without ASP.NET, Angular, etc.

                  N Offline
                  N Offline
                  Nelek
                  wrote on last edited by
                  #16

                  Marc Clifton wrote:

                  And while I have written .NET and .NET Core that work together, they work together over a communication protocol, like HTTPS! :laugh:

                  Same can be used for C# and C++ without having to marshal the hell out of parameters

                  M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you Rating helpful answers is nice, but saying thanks can be even nicer.

                  M 1 Reply Last reply
                  0
                  • A adambl

                    It may not have native support, but .Net Standard is implemented by a number of platforms (including Mono, Xamarin): .NET Standard | Microsoft Docs[^].

                    R Offline
                    R Offline
                    Reelix
                    wrote on last edited by
                    #17

                    Using Mono as a platform standard may not be the best idea when they comment out tests because they fail and throw NotImplementedExceptions on every function on files added 11 years previously...

                    -= Reelix =-

                    1 Reply Last reply
                    0
                    • B BillWoodruff

                      Recently a demon made me create a Core project, and then attempt to use it in a WinForms app. And, yes, I altered the project files of both to enable C# 8. The Core project does nothing but define a stupid little Class with one method that writes to the Console.. So, okay, I add a reference to the Core project dll to the WinForm app. I attempt to use it ... well, I m not surprised it didn't work, but was surprised to get a file-not-found error:

                      Quote:

                      System.IO.FileNotFoundException HResult=0x80070002 Message=Could not load file or assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Source=TestUsingCore StackTrace: at TestUsingCore.Form1.Form1_Load(Object sender, EventArgs e) in ...

                      So, I set out to do some research, came across this article by Scott Hanselmann: [^]. I have great respect for Scott, and have learned a lot from his writing over the years; however, this article, titled "How to reference a .NET Core library in WinForms - Or, .NET Standard Explained," ignores the question in the title and ends up recommending ".NET Standard" as if that explains anything. Was Scott avoiding the simple answer that you cannot use a Core project/class in a WinForm app for some reason ? Well, okay, Scott wrote that in June, 2017: that's decades ago in .NET's evolutionary time-scale. To turn my headache into a full-on migraine, I then re-read this article: "How to port desktop applications to .NET Core 3.0" [^]. Whaddya think ?

                      «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

                      R Offline
                      R Offline
                      RickZeeland
                      wrote on last edited by
                      #18

                      I think there's another article by Rick Strahl that might interest you: Multi-Targeting and Porting a .NET Library to .NET Core 2.0 - Rick Strahl's Web Log[^] One of my (young and reckless) colleague's wrote a mixed application this way, including statements like:

                      #if NETCOREAPP2_1
                      using Microsoft.AspNetCore;
                      using Microsoft.AspNetCore.Hosting;
                      using Microsoft.Extensions.DependencyInjection;
                      using Microsoft.Extensions.Logging;
                      using System.Collections.Generic;
                      #endif

                      #if NET47
                      using System.Configuration.Install;
                      using Castle.Core.Internal;
                      using System.Collections.Generic;
                      using Microsoft.AspNet.SignalR;
                      #endif

                      He didn't turn on "Show warnings as errors" :-\

                      1 Reply Last reply
                      0
                      • S Super Lloyd

                        Was it [this demon](https://res.cloudinary.com/teepublic/image/private/s--kWQn61Ge--/t\_Resized Artwork/c\_fit,g\_north\_west,h\_954,w\_954/co\_000000,e\_outline:48/co\_000000,e\_outline:inner\_fill:48/co\_ffffff,e\_outline:48/co\_ffffff,e\_outline:inner\_fill:48/co\_bbbbbb,e\_outline:3:1000/c\_mpad,g\_center,h\_1260,w\_1260/b\_rgb:eeeeee/c\_limit,f\_jpg,h\_630,q\_90,w\_630/v1446232138/production/designs/234526\_1.jpg) per chance?! :O ;P On a side note, Googling for "Thailand computer demon" brought me to [this](https://www.google.com/imgres?imgurl=https%3A%2F%2Fi.imgur.com%2FnSja7YH.jpg&imgrefurl=https%3A%2F%2Fimgur.com%2Fr%2Fwallpapers%2FnSja7YH&tbnid=nom2muwmLU3oeM&vet=12ahUKEwjwkPj8973lAhWq0jgGHds-BiIQMygNegUIARDuAQ..i&docid=W8herZazFNKGBM&w=1920&h=1080&q=thailand computer demon&ved=2ahUKEwjwkPj8973lAhWq0jgGHds-BiIQMygNegUIARDuAQ)... So pretty! :O I need some holidays now, haha :-D

                        A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

                        P Offline
                        P Offline
                        peterkmx
                        wrote on last edited by
                        #19

                        OK, ok … where is the computer ? On the boat maybe … :-)

                        1 Reply Last reply
                        0
                        • N Nelek

                          Marc Clifton wrote:

                          And while I have written .NET and .NET Core that work together, they work together over a communication protocol, like HTTPS! :laugh:

                          Same can be used for C# and C++ without having to marshal the hell out of parameters

                          M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you Rating helpful answers is nice, but saying thanks can be even nicer.

                          M Offline
                          M Offline
                          Marc Clifton
                          wrote on last edited by
                          #20

                          Nelek wrote:

                          Same can be used for C# and C++ without having to marshal the hell out of parameters

                          Exactly!

                          Latest Articles:
                          Client-Side TypeScript without ASP.NET, Angular, etc.

                          1 Reply Last reply
                          0
                          • B BillWoodruff

                            :thumbsup: thanks, Lloyd, you make more sense than Scott did ! Given I am trying to use a compiled Core project (dll) in a WinForms project, do you think it possible that some modification could be made to the Core project so that it somehow included the necessary run-time ? cheers, Bill

                            «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

                            M Offline
                            M Offline
                            Mike Marynowski
                            wrote on last edited by
                            #21

                            Your WinForms project needs to be .NET Core to reference a .NET Core library. Referencing a .NET Core library from a .NET Framework project is not a supported scenario. It can go the other way though - a .NET Core project supports adding references to .NET Framework libraries, but keep in mind there may be a few APIs that aren't available in .NET Core. It's fairly rare that you'll run into this though. Just remember - .NET Core new and backwards compat, .NET Framework old. You can't add a reference to a new .NET Core project from an old .NET Framework project.

                            Blog: [Code Index] By Mike Marynowski | Business: Singulink

                            1 Reply Last reply
                            0
                            • B BillWoodruff

                              :thumbsup: thanks, Lloyd, you make more sense than Scott did ! Given I am trying to use a compiled Core project (dll) in a WinForms project, do you think it possible that some modification could be made to the Core project so that it somehow included the necessary run-time ? cheers, Bill

                              «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

                              M Offline
                              M Offline
                              Mike Marynowski
                              wrote on last edited by
                              #22

                              Your WinForms project needs to be .NET Core to reference a .NET Core library. Referencing a .NET Core library from a .NET Framework project is not a supported scenario. It can go the other way though - a .NET Core project supports adding references to .NET Framework libraries, but keep in mind there may be a few APIs that aren't available in .NET Core. It's fairly rare that you'll run into this though. Just remember - .NET Core new and backwards compat, .NET Framework old. You can't add a reference to a new .NET Core library from an old .NET Framework project. That would be like trying to add a reference to a .NET 4.7 library from a .NET 2.0 project...wouldn't work.

                              Blog: [Code Index] By Mike Marynowski | Business: Singulink

                              1 Reply Last reply
                              0
                              • B BillWoodruff

                                Recently a demon made me create a Core project, and then attempt to use it in a WinForms app. And, yes, I altered the project files of both to enable C# 8. The Core project does nothing but define a stupid little Class with one method that writes to the Console.. So, okay, I add a reference to the Core project dll to the WinForm app. I attempt to use it ... well, I m not surprised it didn't work, but was surprised to get a file-not-found error:

                                Quote:

                                System.IO.FileNotFoundException HResult=0x80070002 Message=Could not load file or assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Source=TestUsingCore StackTrace: at TestUsingCore.Form1.Form1_Load(Object sender, EventArgs e) in ...

                                So, I set out to do some research, came across this article by Scott Hanselmann: [^]. I have great respect for Scott, and have learned a lot from his writing over the years; however, this article, titled "How to reference a .NET Core library in WinForms - Or, .NET Standard Explained," ignores the question in the title and ends up recommending ".NET Standard" as if that explains anything. Was Scott avoiding the simple answer that you cannot use a Core project/class in a WinForm app for some reason ? Well, okay, Scott wrote that in June, 2017: that's decades ago in .NET's evolutionary time-scale. To turn my headache into a full-on migraine, I then re-read this article: "How to port desktop applications to .NET Core 3.0" [^]. Whaddya think ?

                                «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

                                J Offline
                                J Offline
                                josued8a
                                wrote on last edited by
                                #23

                                Nice to know! I am developing a new class library on .Net Core that will be called from a .NET Standard. I should stop doing this and use a regular .NET Standard Class library.

                                just do what you need to do.. worry about the consequences later...

                                1 Reply Last reply
                                0
                                • B BillWoodruff

                                  :thumbsup: thanks, Lloyd, you make more sense than Scott did ! Given I am trying to use a compiled Core project (dll) in a WinForms project, do you think it possible that some modification could be made to the Core project so that it somehow included the necessary run-time ? cheers, Bill

                                  «One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

                                  S Offline
                                  S Offline
                                  Super Lloyd
                                  wrote on last edited by
                                  #24

                                  As for WinForm control library... Damn... you could do that with PCL, compile for multiple targets! But you can't. Anyway as the other poster suggested, it seems like you can make a .NET Framework control library and use it in your .NET Core app! :)

                                  A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

                                  1 Reply Last reply
                                  0
                                  • R Reelix

                                    > Instead, you should use .NET Standard, the common denominator between the two. Since when do Linux and Mac natively support .NET Standard, and since when do all Servers inherently have it installed? It's almost as if people have specific use-case scenarios for requiring .NET Core...

                                    -= Reelix =-

                                    Sander RosselS Offline
                                    Sander RosselS Offline
                                    Sander Rossel
                                    wrote on last edited by
                                    #25

                                    .NET Standard isn't a runtime, so it's not installed on any machine. .NET Core applications can be deployed as stand-alone applications that come bundled with the runtime though. And I guess the .NET Core runtime can be installed on Mac or Linux directly as well, as you can on Windows. I've never targeted Mac or Linux, but that's what I understand. And in any case, you should use .NET Standard if you want to use a library in .NET Framework (and run it on Windows) or in .NET Core (and want to use it cross-platform) or Mono or Xamarin.

                                    Best, Sander sanderrossel.com Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                                    1 Reply Last reply
                                    0
                                    Reply
                                    • Reply as topic
                                    Log in to reply
                                    • Oldest to Newest
                                    • Newest to Oldest
                                    • Most Votes


                                    • Login

                                    • Don't have an account? Register

                                    • Login or register to search.
                                    • First post
                                      Last post
                                    0
                                    • Categories
                                    • Recent
                                    • Tags
                                    • Popular
                                    • World
                                    • Users
                                    • Groups