Hey guys,
I already started a thread in the
Operations Manager Extensibility forums, but I was told to ask my question here, too.
Some time ago, I developed a dashboard web application based on ASP.NET MVC 5. The app pulls data from SCOM and visualizes the information as tiles in a dashboard slideshow. So far, so good. Now I want to port the existing codebase to ASP.NET Core 1.1 and 2.0 in future, add several new features, add a database and so on. Users should be able to authenticate against AD and I also want to query Cisco Prime Infrastructure's REST API. You get the idea.
My problem is: Since ASP.NET Core 2.0 won't be able to get run against the full .NET-Framework anymore, is there a way to use the non .NET-Standard compliant assemblies needed to communicate with SCOM targeting netcoreapp1.1? The current ones are using mscorlib and will therefore most likely fall out of use very soon (in terms of ASP.NET Core). I also tried using the Microsoft.NETCore.Portable.Compatibility package, but this results in an "assembly not found" ReflectionTypeLoadException.
Any help is highly appreciated.
Thanks and greetings from Germany,
Jonas