|
|
|
@ -34,6 +34,7 @@ |
|
|
|
|
</PropertyGroup> |
|
|
|
|
<ItemGroup> |
|
|
|
|
<Reference Include="System" /> |
|
|
|
|
<Reference Include="System.Configuration" /> |
|
|
|
|
<Reference Include="System.Core" /> |
|
|
|
|
<Reference Include="System.Xml.Linq" /> |
|
|
|
|
<Reference Include="System.Data.DataSetExtensions" /> |
|
|
|
@ -43,8 +44,25 @@ |
|
|
|
|
<Reference Include="System.Xml" /> |
|
|
|
|
</ItemGroup> |
|
|
|
|
<ItemGroup> |
|
|
|
|
<Compile Include="AbstractFactory\AbstractFactory.cs" /> |
|
|
|
|
<Compile Include="AbstractFactory\ConcreteFactory1.cs" /> |
|
|
|
|
<Compile Include="AbstractFactory\ConcreteFactory2.cs" /> |
|
|
|
|
<Compile Include="AbstractFactory\ConcreteProduct1A.cs" /> |
|
|
|
|
<Compile Include="AbstractFactory\ConcreteProduct1B.cs" /> |
|
|
|
|
<Compile Include="AbstractFactory\ConcreteProduct2A.cs" /> |
|
|
|
|
<Compile Include="AbstractFactory\ConcreteProduct2B.cs" /> |
|
|
|
|
<Compile Include="AbstractFactory\ProductA.cs" /> |
|
|
|
|
<Compile Include="AbstractFactory\ProductB.cs" /> |
|
|
|
|
<Compile Include="FactoryMethod\DbLog.cs" /> |
|
|
|
|
<Compile Include="FactoryMethod\DbLogFactory.cs" /> |
|
|
|
|
<Compile Include="FactoryMethod\ILog.cs" /> |
|
|
|
|
<Compile Include="FactoryMethod\LogFactory.cs" /> |
|
|
|
|
<Compile Include="FactoryMethod\XmlLog.cs" /> |
|
|
|
|
<Compile Include="FactoryMethod\XmlLogFactory.cs" /> |
|
|
|
|
<Compile Include="Program.cs" /> |
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" /> |
|
|
|
|
<Compile Include="SimpleFactory\DbLogger.cs" /> |
|
|
|
|
<Compile Include="SimpleFactory\LoggerFactory.cs" /> |
|
|
|
|
<Compile Include="StaticFactoryMethod\ILogger.cs" /> |
|
|
|
|
<Compile Include="StaticFactoryMethod\Logger.cs" /> |
|
|
|
|
<Compile Include="StaticFactoryMethod\LoggerFactory.cs" /> |
|
|
|
|