volosoft / castle-windsor-ms-adapter

Castle Windsor ASP.NET Core / Microsoft.Extensions.DependencyInjection Adapter
https://www.nuget.org/packages/Castle.Windsor.MsDependencyInjection
MIT License
85 stars 29 forks source link

added support for net461 #31

Closed CyAScott closed 5 years ago

CyAScott commented 5 years ago

We are in the process of migrating to Asp.Net core and all of our code was migrated to .net standard; however, one nuget that we need has not migrated to .net standard but will be soon. I added a target framework to net461 since Asp.Net core can run on net461 until we switch to core.

ismcagdas commented 5 years ago

@CyAScott you can use .NET Standard libraries in .NET 461 projects. We are already using this library in our project. Have you tried to install this into your solution ?

CyAScott commented 5 years ago

You're right, sorry for the confusion. After some research the issue was caused by trying to target netstandard2.0 and net452. After upgrading all projects to net462 everything started to work.