SPRNET-1239 - Check for package cycles with NDepend (fix 2005/2003 solutions)

This commit is contained in:
markpollack
2009-11-24 18:29:01 +00:00
parent d0989221f9
commit 47ee3623aa
4 changed files with 34 additions and 42 deletions

View File

@@ -47,17 +47,17 @@ namespace Spring.Objects.Factory.Config
/// <list type="bullet">
/// <item>
/// <description>
/// <see cref="Spring.Objects.Factory.Support.ManagedList"/>.
/// <see cref="Spring.Objects.Factory.Config.ManagedList"/>.
/// </description>
/// </item>
/// <item>
/// <description>
/// <see cref="Spring.Objects.Factory.Support.ManagedDictionary"/>.
/// <see cref="Spring.Objects.Factory.Config.ManagedDictionary"/>.
/// </description>
/// </item>
/// <item>
/// <description>
/// <see cref="Spring.Objects.Factory.Support.ManagedSet"/>.
/// <see cref="Spring.Objects.Factory.Config.ManagedSet"/>.
/// </description>
/// </item>
/// </list>

View File

@@ -81,7 +81,7 @@ namespace Spring.Objects.Factory.Support
/// </item>
/// <item>
/// <p>
/// An <see cref="Spring.Objects.Factory.Support.IManagedCollection"/>. This is a
/// An <see cref="Spring.Objects.Factory.Config.IManagedCollection"/>. This is a
/// special placeholder collection that may contain
/// <see cref="Spring.Objects.Factory.Config.RuntimeObjectReference"/>s or
/// collections that will need to be resolved.

View File

@@ -2160,6 +2160,11 @@
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Config\IManagedCollection.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Config\InstantiationAwareObjectPostProcessorAdapter.cs"
SubType = "Code"
@@ -2200,6 +2205,26 @@
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Config\ManagedDictionary.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Config\ManagedList.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Config\ManagedNameValueCollection.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Config\ManagedSet.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Config\MethodInvokingFactoryObject.cs"
SubType = "Code"
@@ -2410,11 +2435,6 @@
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Support\IManagedCollection.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Support\IMethodReplacer.cs"
SubType = "Code"
@@ -2445,26 +2465,6 @@
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Support\ManagedDictionary.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Support\ManagedList.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Support\ManagedNameValueCollection.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Support\ManagedSet.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Support\MethodInjectingInstantiationStrategy.cs"
SubType = "Code"

View File

@@ -657,8 +657,13 @@
<Compile Include="Objects\Factory\Config\DependencyDescriptor.cs" />
<Compile Include="Objects\Factory\Config\DictionaryVariableSource.cs" />
<Compile Include="Objects\Factory\Config\IConfigurableFactoryObject.cs" />
<Compile Include="Objects\Factory\Config\IManagedCollection.cs" />
<Compile Include="Objects\Factory\Config\InstantiationAwareObjectPostProcessorAdapter.cs" />
<Compile Include="Objects\Factory\Config\ISingletonObjectRegistry.cs" />
<Compile Include="Objects\Factory\Config\ManagedDictionary.cs" />
<Compile Include="Objects\Factory\Config\ManagedList.cs" />
<Compile Include="Objects\Factory\Config\ManagedNameValueCollection.cs" />
<Compile Include="Objects\Factory\Config\ManagedSet.cs" />
<Compile Include="Objects\Factory\Config\ObjectDefinitionHolder.cs" />
<Compile Include="Objects\Factory\Config\ObjectDefinitionVisitor.cs" />
<Compile Include="Objects\Factory\Config\ObjectRole.cs" />
@@ -681,7 +686,6 @@
<Compile Include="Objects\Factory\Support\DefaultObjectNameGenerator.cs" />
<Compile Include="Objects\Factory\Support\IConfigurableObjectDefinition.cs" />
<Compile Include="Objects\Factory\Support\IObjectNameGenerator.cs" />
<Compile Include="Objects\Factory\Support\ManagedNameValueCollection.cs" />
<Compile Include="Objects\Factory\Support\ObjectDefinitionBuilder.cs" />
<Compile Include="Objects\Factory\Support\ObjectDefinitionValueResolver.cs" />
<Compile Include="Objects\Factory\Support\SimpleAutowireCandidateResolver.cs" />
@@ -906,9 +910,6 @@
<Compile Include="Objects\Factory\Support\IInstantiationStrategy.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Objects\Factory\Support\IManagedCollection.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Objects\Factory\Support\IMethodReplacer.cs">
<SubType>Code</SubType>
</Compile>
@@ -924,15 +925,6 @@
<Compile Include="Objects\Factory\Support\LookupMethodReplacer.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Objects\Factory\Support\ManagedDictionary.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Objects\Factory\Support\ManagedList.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Objects\Factory\Support\ManagedSet.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Objects\Factory\Support\MethodInjectingInstantiationStrategy.cs">
<SubType>Code</SubType>
</Compile>