-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStoreExample.csproj
45 lines (39 loc) · 2.43 KB
/
StoreExample.csproj
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
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentEvents.EntityFramework" Version="2.7.2" />
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="1.1.0-preview1.19275.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.2" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.0.0-rc4" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Interfaces\StockService.cs" />
<Compile Remove="Controllers\HomeControler.cs" />
<Compile Remove="Interfaces\IStoreContext.cs" />
<Compile Remove="Modules\ProductCategory.cs" />
<Compile Remove="Repositories\AppServices.cs" />
<Compile Remove="Interfaces\IAppServices.cs" />
<Compile Remove="Repositories\Interfaces\StockService.cs" />
<Compile Remove="Repositories\Interfaces\IStoreContext.cs" />
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="StoreApplication\Views\Home\Index.cshtml" />
<_ContentIncludedByDefault Remove="StoreApplication\Views\Home\Privacy.cshtml" />
<_ContentIncludedByDefault Remove="StoreApplication\Views\Shared\Error.cshtml" />
<_ContentIncludedByDefault Remove="StoreApplication\Views\Shared\_CookieConsentPartial.cshtml" />
<_ContentIncludedByDefault Remove="StoreApplication\Views\Shared\_Layout.cshtml" />
<_ContentIncludedByDefault Remove="StoreApplication\Views\Shared\_ValidationScriptsPartial.cshtml" />
<_ContentIncludedByDefault Remove="StoreApplication\Views\_ViewImports.cshtml" />
<_ContentIncludedByDefault Remove="StoreApplication\Views\_ViewStart.cshtml" />
<_ContentIncludedByDefault Remove="StoreApplication\appsettings.Development.json" />
<_ContentIncludedByDefault Remove="StoreApplication\appsettings.json" />
<_ContentIncludedByDefault Remove="StoreApplication\obj\project.assets.json" />
<_ContentIncludedByDefault Remove="StoreApplication\obj\project.packagespec.json" />
<_ContentIncludedByDefault Remove="StoreApplication\obj\StoreApplication.csproj.nuget.dgspec.json" />
<_ContentIncludedByDefault Remove="StoreApplication\Properties\launchSettings.json" />
</ItemGroup>
</Project>