Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Updates to VS2008 project files
Browse files Browse the repository at this point in the history
Added old spring-context schema definition
  • Loading branch information
thomast74 committed Sep 3, 2012
1 parent bd64cff commit e4f70f2
Show file tree
Hide file tree
Showing 4 changed files with 137 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>

<xsd:schema xmlns="http://www.springframework.net/context"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:objects="http://www.springframework.net"
xmlns:tool="http://www.springframework.net/tool"
targetNamespace="http://www.springframework.net/context"
elementFormDefault="qualified"
attributeFormDefault="unqualified">

<xsd:import namespace="http://www.springframework.net"/>
<xsd:import namespace="http://www.springframework.net/tool"/>

<xsd:annotation>
<xsd:documentation><![CDATA[
Defines the configuration elements for the Spring Framework's application
context support. Effects the activation of various configuration styles
for the containing Spring ApplicationContext.
]]></xsd:documentation>
</xsd:annotation>


<xsd:element name="code-config">
<xsd:annotation>
<xsd:documentation><![CDATA[
Scans assemblies for [Configuration] attributes that provide Spring object definitions.
]]></xsd:documentation>
</xsd:annotation>
<!--
<xsd:complexType>
<xsd:attribute name="assemblies" type="xsd:string">
<xsd:annotation>
<xsd:documentation><![CDATA[
The names of assemblies to be scanned.
]]></xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
-->
</xsd:element>


</xsd:schema>
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
<Compile Include="Context\Attributes\AssemblyTypeScanner.cs" />
<Compile Include="Context\Attributes\AssemblyTypeSource.cs" />
<Compile Include="Context\Attributes\AttributeConfigUtils.cs" />
<Compile Include="Context\Attributes\AttributeObjectNameGenerator.cs" />
<Compile Include="Context\Attributes\ConfigurationAttribute.cs" />
<Compile Include="Context\Attributes\ConfigurationClass.cs" />
<Compile Include="Context\Attributes\ConfigurationClassAssemblyResource.cs" />
Expand All @@ -65,7 +66,7 @@
<Compile Include="Context\Attributes\ConfigurationClassObjectDefinitionReader.cs" />
<Compile Include="Context\Attributes\ConfigurationClassParser.cs" />
<Compile Include="Context\Attributes\ConfigurationClassPostProcessor.cs" />
<Compile Include="Context\Attributes\DefinitionAttribute.cs" />
<Compile Include="Context\Attributes\ObjectDefAttribute.cs" />
<Compile Include="Context\Attributes\DependsOnAttribute.cs" />
<Compile Include="Context\Attributes\IAssemblyTypeScanner.cs" />
<Compile Include="Context\Attributes\ImportAttribute.cs" />
Expand All @@ -74,7 +75,14 @@
<Compile Include="Context\Attributes\LinqExtensionMethods.cs" />
<Compile Include="Context\Attributes\ReflectionOnlyUtils.cs" />
<Compile Include="Context\Attributes\RequiredConstraintAssemblyTypeScanner.cs" />
<Compile Include="Context\Attributes\ScannedGenericObjectDefinition.cs" />
<Compile Include="Context\Attributes\ScopeAttribute.cs" />
<Compile Include="Context\Attributes\TypeFilters\AbstractLoadTypeFilter.cs" />
<Compile Include="Context\Attributes\TypeFilters\AssignableTypeFilter.cs" />
<Compile Include="Context\Attributes\TypeFilters\AttributeTypeFilter.cs" />
<Compile Include="Context\Attributes\TypeFilters\CustomTypeFactory.cs" />
<Compile Include="Context\Attributes\TypeFilters\ITypeFilter.cs" />
<Compile Include="Context\Attributes\TypeFilters\RegexPatternTypeFilter.cs" />
<Compile Include="Context\Config\AttributeConfigObjectDefinitionParser.cs" />
<Compile Include="Context\Config\ComponentScanObjectDefinitionParser.cs" />
<Compile Include="Context\Config\ContextNamespaceParser.cs" />
Expand All @@ -85,6 +93,9 @@
<EmbeddedResource Include="Context\Config\spring-context-1.3.xsd">
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="Context\Config\spring-context-2.0.xsd">
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup />
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,12 @@
<Compile Include="AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\spring-context-2.0.xsd">
<EmbeddedResource Include="Context\Config\spring-context-1.3.xsd">
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<EmbeddedResource Include="Context\Config\spring-context-2.0.xsd">
<SubType>Designer</SubType>
</EmbeddedResource> </ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,13 @@
<Compile Include="Context\Attributes\ScanningConfigurationClassPostProcessorTests.cs" />
<Compile Include="Context\Attributes\AbstractConfigurationClassPostProcessorTests.cs" />
<Compile Include="Context\Attributes\ConfigurationClassPostProcessorTests.cs" />
<Compile Include="Context\Attributes\DefinitionAttributeTests.cs" />
<Compile Include="Context\Attributes\ObjectDefAttributeTests.cs" />
<Compile Include="Context\Attributes\ImportResourceAttributeTests.cs" />
<Compile Include="Context\Attributes\SimpleScanTests.cs" />
<Compile Include="Context\Config\AttributeConfigObjectDefinitionParserTests.cs" />
<Compile Include="Context\Config\ComponentScanObjectDefinitionParserAssemblyFilterTests.cs" />
<Compile Include="Context\Config\ComponentScanObjectDefinitionParserTypeFilterTests.cs" />
<Compile Include="Context\Config\ComponentScanObjectDefinitionParserTests.cs" />
<Compile Include="Context\Config\ContextNamespaceParserTests.cs" />
<Compile Include="Example\Scannable\StubFooDao.cs" />
<Compile Include="Example\Scannable\FooService.cs" />
Expand All @@ -94,6 +98,79 @@
<Name>Spring.Core.Configuration.2008</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\BaseAssemblyTestSingle.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\BaseAssemblyTestMultiple.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\BaseAssemblyTestNegative.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\BaseAssemblyTestWithout.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\TypeScannerTestRegExInclude.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\TypeScannerTestRegExExclude.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\TypeScannerTestRegExInclude2.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\TypeScannerTestAttributeInclude.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\TypeScannerTestAttributeExclude.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\TypeScannerTestAssignableInclude.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\TypeScannerTestAssignableExclude.xml">
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\TypeScannerTestCustomExclude.xml">
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\TypeScannerTestCustomInclude.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\AttributeConfigParser.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\ComponentScanAttributeConfigFalse.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\ComponentScanAttributeConfigTrue.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\ComponentScan1.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\ComponentScan2.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\ComponentScan4.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\ComponentScan5.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\ComponentScan6.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\ComponentScan3.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Context\Config\ConfigFiles\ComponentScan31.xml" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down

0 comments on commit e4f70f2

Please sign in to comment.