-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCom.MarcusTS.SmartDI.nuspec
32 lines (26 loc) · 1.41 KB
/
Com.MarcusTS.SmartDI.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0"?>
<package>
<metadata>
<id>Com.MarcusTS.SmartDI</id>
<version>2.0.5</version>
<title>Smart DI Container</title>
<authors>Stephen Marcus</authors>
<owners>Marcus Technical Services, Inc.</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="file">license.txt</license>
<description>
A container that creates and then (optionally) stores variables to provide caching and centralized access.
These sorts of containers are sometimes mis-described as IOC ("Inversion of Control") Containers. Since they do not provide any control over program flow, the accurate term is DI ("Dependency Injection") Container.
The SmartDI Container is unique in that it:
* Does not store instantiated objects unnecessarily.
* Supports object life-cycle management. When an object dies, it is removed from the container. This requires you to raise a global message.
* Supports simple register-and-resolve so types do not need to be registered in advance.
</description>
<copyright>Copyright 2021 Marcus Technical Services, Inc. (https://www.marcusts.com)</copyright>
<tags>ioc ioc-container di di-container object-lifecycle smart-di-container maui</tags>
<readme>docs\README.md</readme>
</metadata>
<files>
<file src="..\README.md" target="docs\" />
</files>
</package>