Skip to content

Commit 5537aa8

Browse files
committed
with cspoj
1 parent a52bb09 commit 5537aa8

File tree

5 files changed

+179
-19
lines changed

5 files changed

+179
-19
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{C5FE34FE-4A88-4A8A-8AB5-20640C99A2D3}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>BookStore.BLL.RepositoryService</RootNamespace>
11+
<AssemblyName>BookStore.BLL.RepositoryService</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<DebugSymbols>true</DebugSymbols>
17+
<DebugType>full</DebugType>
18+
<Optimize>false</Optimize>
19+
<OutputPath>bin\Debug\</OutputPath>
20+
<DefineConstants>DEBUG;TRACE</DefineConstants>
21+
<ErrorReport>prompt</ErrorReport>
22+
<WarningLevel>4</WarningLevel>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25+
<DebugType>pdbonly</DebugType>
26+
<Optimize>true</Optimize>
27+
<OutputPath>bin\Release\</OutputPath>
28+
<DefineConstants>TRACE</DefineConstants>
29+
<ErrorReport>prompt</ErrorReport>
30+
<WarningLevel>4</WarningLevel>
31+
</PropertyGroup>
32+
<ItemGroup>
33+
<Reference Include="Ninject">
34+
<HintPath>..\packages\Ninject.3.2.2.0\lib\net45-full\Ninject.dll</HintPath>
35+
</Reference>
36+
<Reference Include="System" />
37+
<Reference Include="System.Core" />
38+
<Reference Include="System.Xml.Linq" />
39+
<Reference Include="System.Data.DataSetExtensions" />
40+
<Reference Include="Microsoft.CSharp" />
41+
<Reference Include="System.Data" />
42+
<Reference Include="System.Xml" />
43+
</ItemGroup>
44+
<ItemGroup>
45+
<Compile Include="AuthorService.cs" />
46+
<Compile Include="BookService.cs" />
47+
<Compile Include="GenreService.cs" />
48+
<Compile Include="Properties\AssemblyInfo.cs" />
49+
<Compile Include="RoleService.cs" />
50+
<Compile Include="StoreService.cs" />
51+
<Compile Include="UserService.cs" />
52+
</ItemGroup>
53+
<ItemGroup>
54+
<ProjectReference Include="..\BookStore.DAL\BookStore.DAL.csproj">
55+
<Project>{9c9be9da-c07e-4cfa-bf31-1b527b6c3b39}</Project>
56+
<Name>BookStore.DAL</Name>
57+
</ProjectReference>
58+
<ProjectReference Include="..\BookStore.DLL\BookStore.DLL.csproj">
59+
<Project>{fd569b25-1c08-4e92-a42d-6bfbcb094c17}</Project>
60+
<Name>BookStore.DLL</Name>
61+
</ProjectReference>
62+
<ProjectReference Include="..\BookStore.Domain\BookStore.DO.csproj">
63+
<Project>{b52fe83e-5fd1-4ed7-ad08-a003eb187650}</Project>
64+
<Name>BookStore.DO</Name>
65+
</ProjectReference>
66+
</ItemGroup>
67+
<ItemGroup>
68+
<None Include="packages.config" />
69+
</ItemGroup>
70+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
71+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
72+
Other similar extension points exist, see Microsoft.Common.targets.
73+
<Target Name="BeforeBuild">
74+
</Target>
75+
<Target Name="AfterBuild">
76+
</Target>
77+
-->
78+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{84D11725-F35C-4296-A063-39737433FFA5}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>BookStore.DAL.EntityFramework</RootNamespace>
11+
<AssemblyName>BookStore.DAL.EntityFramework</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<DebugSymbols>true</DebugSymbols>
17+
<DebugType>full</DebugType>
18+
<Optimize>false</Optimize>
19+
<OutputPath>bin\Debug\</OutputPath>
20+
<DefineConstants>DEBUG;TRACE</DefineConstants>
21+
<ErrorReport>prompt</ErrorReport>
22+
<WarningLevel>4</WarningLevel>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25+
<DebugType>pdbonly</DebugType>
26+
<Optimize>true</Optimize>
27+
<OutputPath>bin\Release\</OutputPath>
28+
<DefineConstants>TRACE</DefineConstants>
29+
<ErrorReport>prompt</ErrorReport>
30+
<WarningLevel>4</WarningLevel>
31+
</PropertyGroup>
32+
<ItemGroup>
33+
<Reference Include="EntityFramework">
34+
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath>
35+
<Private>True</Private>
36+
</Reference>
37+
<Reference Include="EntityFramework.SqlServer">
38+
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath>
39+
<Private>True</Private>
40+
</Reference>
41+
<Reference Include="System" />
42+
<Reference Include="System.ComponentModel.DataAnnotations" />
43+
<Reference Include="System.Core" />
44+
<Reference Include="System.Xml.Linq" />
45+
<Reference Include="System.Data.DataSetExtensions" />
46+
<Reference Include="Microsoft.CSharp" />
47+
<Reference Include="System.Data" />
48+
<Reference Include="System.Xml" />
49+
</ItemGroup>
50+
<ItemGroup>
51+
<Compile Include="EfAuthorRepository.cs" />
52+
<Compile Include="EfBookRepository.cs" />
53+
<Compile Include="EfDbContext.cs" />
54+
<Compile Include="EfGenreRepository.cs" />
55+
<Compile Include="EfRoleRepository.cs" />
56+
<Compile Include="EfStoreRepository.cs" />
57+
<Compile Include="EfUserRepository.cs" />
58+
<Compile Include="Migrations\Configuration.cs" />
59+
<Compile Include="Properties\AssemblyInfo.cs" />
60+
</ItemGroup>
61+
<ItemGroup>
62+
<ProjectReference Include="..\BookStore.DAL\BookStore.DAL.csproj">
63+
<Project>{9c9be9da-c07e-4cfa-bf31-1b527b6c3b39}</Project>
64+
<Name>BookStore.DAL</Name>
65+
</ProjectReference>
66+
<ProjectReference Include="..\BookStore.Domain\BookStore.DO.csproj">
67+
<Project>{b52fe83e-5fd1-4ed7-ad08-a003eb187650}</Project>
68+
<Name>BookStore.DO</Name>
69+
</ProjectReference>
70+
</ItemGroup>
71+
<ItemGroup>
72+
<None Include="App.config" />
73+
<None Include="packages.config" />
74+
</ItemGroup>
75+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
76+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
77+
Other similar extension points exist, see Microsoft.Common.targets.
78+
<Target Name="BeforeBuild">
79+
</Target>
80+
<Target Name="AfterBuild">
81+
</Target>
82+
-->
83+
</Project>

Diff for: BookStore.DAL/BookStore.DAL.csproj

+1-14
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,6 @@
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
3232
<ItemGroup>
33-
<Reference Include="EntityFramework">
34-
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath>
35-
</Reference>
36-
<Reference Include="EntityFramework.SqlServer">
37-
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath>
38-
</Reference>
3933
<Reference Include="System" />
4034
<Reference Include="System.ComponentModel.DataAnnotations" />
4135
<Reference Include="System.Core" />
@@ -53,14 +47,6 @@
5347
<Compile Include="Abstract\IRoleRepository.cs" />
5448
<Compile Include="Abstract\IStoreRepository.cs" />
5549
<Compile Include="Abstract\IUserRepository.cs" />
56-
<Compile Include="Concrete\EFAuthorRepository.cs" />
57-
<Compile Include="Concrete\EFBookRepository.cs" />
58-
<Compile Include="Concrete\EFRoleRepository.cs" />
59-
<Compile Include="Concrete\EFStoreRepository.cs" />
60-
<Compile Include="Concrete\EFDbContext.cs" />
61-
<Compile Include="Concrete\EFGenreRepository.cs" />
62-
<Compile Include="Concrete\EFUserRepository.cs" />
63-
<Compile Include="Migrations\Configuration.cs" />
6450
<Compile Include="Properties\AssemblyInfo.cs" />
6551
</ItemGroup>
6652
<ItemGroup>
@@ -73,6 +59,7 @@
7359
<None Include="App.config" />
7460
<None Include="packages.config" />
7561
</ItemGroup>
62+
<ItemGroup />
7663
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7764
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
7865
Other similar extension points exist, see Microsoft.Common.targets.

Diff for: BookStore.Domain/BookStore.DO.csproj

-3
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@
3838
<SpecificVersion>False</SpecificVersion>
3939
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath>
4040
</Reference>
41-
<Reference Include="HtmlAgilityPack">
42-
<HintPath>..\packages\HtmlAgilityPack.1.4.9\lib\Net45\HtmlAgilityPack.dll</HintPath>
43-
</Reference>
4441
<Reference Include="Microsoft.JScript" />
4542
<Reference Include="Microsoft.mshtml, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
4643
<EmbedInteropTypes>True</EmbedInteropTypes>

Diff for: BookStore/BookStore.csproj

+17-2
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@
6969
<Private>True</Private>
7070
<HintPath>..\packages\DataExtractingSDK.1.0.1\lib\net40\Microsoft.mshtml.dll</HintPath>
7171
</Reference>
72+
<Reference Include="Microsoft.Practices.ServiceLocation">
73+
<HintPath>..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll</HintPath>
74+
</Reference>
7275
<Reference Include="Microsoft.Threading.Tasks">
7376
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>
7477
</Reference>
@@ -90,6 +93,9 @@
9093
<SpecificVersion>False</SpecificVersion>
9194
<HintPath>..\packages\Ninject.3.2.2.0\lib\net45-full\Ninject.dll</HintPath>
9295
</Reference>
96+
<Reference Include="Ninject.Web.Common">
97+
<HintPath>..\packages\Ninject.Web.Common.3.2.3.0\lib\net45-full\Ninject.Web.Common.dll</HintPath>
98+
</Reference>
9399
<Reference Include="System" />
94100
<Reference Include="System.Data" />
95101
<Reference Include="System.Drawing" />
@@ -362,18 +368,19 @@
362368
<DependentUpon>jquery.validate.min.js</DependentUpon>
363369
</Content>
364370
<Content Include="Views\Admin\Index.cshtml" />
365-
<Content Include="Views\Book\Wiki.cshtml" />
366371
<Content Include="Views\Admin\Edit.cshtml" />
367372
<Content Include="Views\Admin\Create.cshtml" />
368373
<Content Include="Views\Admin\FindBookImage.cshtml" />
369374
<Content Include="Views\Admin\AuthorsView.cshtml" />
370375
<Content Include="Views\Account\Login.cshtml" />
371376
<Content Include="Views\Admin\FindBookAnnotation.cshtml" />
372-
<Content Include="Views\Admin\EditorTemplates\Tag.cshtml" />
373377
<Content Include="Views\Book\Index.cshtml" />
374378
<Content Include="Views\Nav\Alphabet.cshtml" />
375379
<Content Include="Views\Account\Register.cshtml" />
376380
<Content Include="Views\Account\UserLogin.cshtml" />
381+
<Content Include="Views\Admin\EditorTemplates\Tag.cshtml" />
382+
<Content Include="Views\Admin\EditorTemplates\Author.cshtml" />
383+
<Content Include="Views\Admin\EditorTemplates\Genre.cshtml" />
377384
</ItemGroup>
378385
<ItemGroup>
379386
<Folder Include="App_Data\" />
@@ -385,6 +392,14 @@
385392
</Content>
386393
</ItemGroup>
387394
<ItemGroup>
395+
<ProjectReference Include="..\BookStore.BLL.RepositoryService\BookStore.BLL.RepositoryService.csproj">
396+
<Project>{c5fe34fe-4a88-4a8a-8ab5-20640c99a2d3}</Project>
397+
<Name>BookStore.BLL.RepositoryService</Name>
398+
</ProjectReference>
399+
<ProjectReference Include="..\BookStore.DAL.EntityFramework\BookStore.DAL.EntityFramework.csproj">
400+
<Project>{84d11725-f35c-4296-a063-39737433ffa5}</Project>
401+
<Name>BookStore.DAL.EntityFramework</Name>
402+
</ProjectReference>
388403
<ProjectReference Include="..\BookStore.DAL\BookStore.DAL.csproj">
389404
<Project>{9c9be9da-c07e-4cfa-bf31-1b527b6c3b39}</Project>
390405
<Name>BookStore.DAL</Name>

0 commit comments

Comments
 (0)