-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSimpleCRUDExample.csproj
25 lines (19 loc) · 1008 Bytes
/
SimpleCRUDExample.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<AssemblyName>SimpleCRUDExample</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Business.Engine\Business.Engine.csproj" />
<ProjectReference Include="..\Core.ApplicationCore\Core.ApplicationCore.csproj" />
<ProjectReference Include="..\Core.Common\Core.Common.csproj" />
<ProjectReference Include="..\Data.DataAccessLayer\Data.DataAccessLayer.csproj" />
</ItemGroup>
</Project>