Click here to Skip to main content
15,913,287 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Core, Standard ... what a mess Pin
BillWoodruff27-Oct-19 21:01
professionalBillWoodruff27-Oct-19 21:01 
GeneralRe: Core, Standard ... what a mess Pin
peterkmx28-Oct-19 4:26
professionalpeterkmx28-Oct-19 4:26 
GeneralRe: Core, Standard ... what a mess Pin
Sander Rossel27-Oct-19 21:48
professionalSander Rossel27-Oct-19 21:48 
GeneralRe: Core, Standard ... what a mess Pin
Reelix28-Oct-19 2:02
Reelix28-Oct-19 2:02 
GeneralRe: Core, Standard ... what a mess Pin
adambl28-Oct-19 3:00
professionaladambl28-Oct-19 3:00 
GeneralRe: Core, Standard ... what a mess Pin
Reelix28-Oct-19 3:56
Reelix28-Oct-19 3:56 
GeneralRe: Core, Standard ... what a mess Pin
Sander Rossel28-Oct-19 21:45
professionalSander Rossel28-Oct-19 21:45 
GeneralRe: Core, Standard ... what a mess Pin
Davyd McColl28-Oct-19 2:57
Davyd McColl28-Oct-19 2:57 
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
GeneralRe: Core, Standard ... what a mess Pin
Jacquers28-Oct-19 3:01
Jacquers28-Oct-19 3:01 
GeneralRe: Core, Standard ... what a mess Pin
Marc Clifton28-Oct-19 3:01
mvaMarc Clifton28-Oct-19 3:01 
GeneralRe: Core, Standard ... what a mess Pin
Nelek28-Oct-19 3:22
protectorNelek28-Oct-19 3:22 
GeneralRe: Core, Standard ... what a mess Pin
Marc Clifton28-Oct-19 4:29
mvaMarc Clifton28-Oct-19 4:29 
GeneralRe: Core, Standard ... what a mess Pin
#realJSOP28-Oct-19 3:11
professional#realJSOP28-Oct-19 3:11 
GeneralRe: Core, Standard ... what a mess Pin
  Forogar  28-Oct-19 3:20
professional  Forogar  28-Oct-19 3:20 
GeneralRe: Core, Standard ... what a mess Pin
RickZeeland28-Oct-19 4:07
mveRickZeeland28-Oct-19 4:07 
GeneralRe: Core, Standard ... what a mess Pin
josued8a28-Oct-19 6:40
josued8a28-Oct-19 6:40 
General3-D Printing Woes Pin
Richard Andrew x6427-Oct-19 8:55
professionalRichard Andrew x6427-Oct-19 8:55 
GeneralRe: 3-D Printing Woes Pin
CodeWraith27-Oct-19 9:44
CodeWraith27-Oct-19 9:44 
GeneralRe: 3-D Printing Woes Pin
Richard Andrew x6427-Oct-19 10:26
professionalRichard Andrew x6427-Oct-19 10:26 
GeneralRe: 3-D Printing Woes Pin
CodeWraith27-Oct-19 10:37
CodeWraith27-Oct-19 10:37 
GeneralRe: 3-D Printing Woes Pin
Richard Andrew x6427-Oct-19 10:51
professionalRichard Andrew x6427-Oct-19 10:51 
GeneralRe: 3-D Printing Woes Pin
CodeWraith27-Oct-19 11:45
CodeWraith27-Oct-19 11:45 
GeneralRe: 3-D Printing Woes Pin
OriginalGriff27-Oct-19 11:11
mveOriginalGriff27-Oct-19 11:11 
GeneralRe: 3-D Printing Woes Pin
Richard Andrew x6427-Oct-19 11:21
professionalRichard Andrew x6427-Oct-19 11:21 
GeneralRe: 3-D Printing Woes Pin
CodeWraith27-Oct-19 11:51
CodeWraith27-Oct-19 11:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.