Touch confused, so hopefully someone can set me straight.
- I create a simple .Net Core 2.2 Console app, and then a separate .Net Framework 4.6.2 library project in the same solution.
- I am actually able to reference the .Net Framework library from the .Net Core App, and use a very simple method from there (e.g. that just returns a string). The app runs fine.
I understood from answers like this that this shouldn't be possible.
Is it that if I were to use any .Net Framework code not native to .Net Core in the console library, then the app would crash at runtime? If this is the case, could someone provide an example of something that would crash the app?