ShapeDiver.ContainerCastleWindsor 1.17.1

dotnet add package ShapeDiver.ContainerCastleWindsor --version 1.17.1
NuGet\Install-Package ShapeDiver.ContainerCastleWindsor -Version 1.17.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ShapeDiver.ContainerCastleWindsor" Version="1.17.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ShapeDiver.ContainerCastleWindsor --version 1.17.1
#r "nuget: ShapeDiver.ContainerCastleWindsor, 1.17.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ShapeDiver.ContainerCastleWindsor as a Cake Addin
#addin nuget:?package=ShapeDiver.ContainerCastleWindsor&version=1.17.1

// Install ShapeDiver.ContainerCastleWindsor as a Cake Tool
#tool nuget:?package=ShapeDiver.ContainerCastleWindsor&version=1.17.1

ShapeDiver IOC Container using Castle Windsor

This package provides an implementation of ShapeDiver.ContainerInterfaces using the Castle Windsor Inversion of Control container.

This implementation is used by the ShapeDiver Plugin for Rhino and Grasshopper as well as other software packages provided by ShapeDiver.

How to get support

Examples

We provide examples on how to use the SDK on github and .NET Fiddle. Ask us on the Forum if you don’t understand how they work, or you want suggest further examples to be added.

Usage

using Castle.Windsor;
using Castle.Windsor.Installer;
using ShapeDiver.Common.Container;

// create a windsor container, install implementations from the ShapeDiver Castle Windsor assembly
var windsorContainer = new WindsorContainer();
windsorContainer.Install(FromAssembly.Named("SdContainerCastleWindsor"));

// resolve the implementation of the ShapeDiver IOC container wrapper for Castle Windsor 
IIocContainer container = windsorContainer.Resolve<IIocContainer>();
container.SetContainer(windsorContainer);

// install from other assemblies that contain implementations you want to resolve
container.InstallFromAssembly("ShapeDiverSDK");

// register typed factories
container.RegisterTypedFactories();

// configure the container
container.Configure();

// late dependency resolution
container.ResolveLateDependencies();

Now you can resolve implementations, an example for the ShapeDiver SDK for .NET:

using ShapeDiver.SDK;

var sdk = container.Resolve<IShapeDiverSDK>();

Notes

Conventions

IIocContainer.InstallFromAssembly uses the following convention for registering implementations:

Say you defined an interface called IMyService, then InstallFromAssembly will strip off the leading I and look for matching implementations whose name contain MyService. In case the name of the implementation ends with Singleton or Factory it will be registered as a singleton. Otherwise it will be registered using transient lifestyle, i.e. every call to Resolve will create a new instance.

Typed factories

Typed factories are a very useful feature of Castle Windsor, read more about it here.

IIocContainer.RegisterTypedFactories will try to register all interfaces whose name end with TypedFactory as a typed factory.

Container configuration

In some cases you might want to automatically configure your container. If so, implement the IIocConfiguration interface. The call to IIocContainer.Configure will resolve all implementations of IIocConfiguration and call them. Typically you want to call this before calling IIocContainer.ResolveLateDependencies.

Late dependency resolving

Some of your implementations might want to resolve all implementations of an interface after installation of implementations from all assemblies. In that case implement INeedsLateDependencyResolving for your implementation. The call to IIocContainer.ResolveLateDependencies will resolve all implementations of INeedsLateDependencyResolving and call them. Typically you want to call this as the very last step before using the container.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.17.1 83 4/5/2024
1.17.0 105 1/8/2024
1.17.0-beta 113 11/30/2023
1.16.1 100 9/15/2023
1.16.0 123 6/26/2023
1.16.0-beta 87 6/23/2023
1.15.0 126 5/24/2023
1.14.0 149 4/17/2023
1.11.6 349 10/17/2022
1.11.5 368 10/14/2022
1.11.4 358 10/13/2022
1.11.3 353 10/12/2022
1.11.2 350 10/6/2022
1.11.1 338 10/6/2022
1.11.0 367 9/28/2022
1.11.0-beta.4 101 9/8/2022
1.11.0-beta.3 78 9/7/2022
1.11.0-beta.2 81 9/7/2022
1.11.0-beta.1 80 9/7/2022
1.11.0-beta 122 9/6/2022
1.10.0-beta 133 8/10/2022