You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
818 B
XML
25 lines
818 B
XML
7 years ago
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Folder Include="wwwroot\" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Microsoft.AspNetCore.App" />
|
||
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.1" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\WebApiStudy.Bll\WebApiStudy.Bll.csproj" />
|
||
|
<ProjectReference Include="..\WebApiStudy.Dal\WebApiStudy.Dal.csproj" />
|
||
|
<ProjectReference Include="..\WebApiStudy.IBll\WebApiStudy.IBll.csproj" />
|
||
|
<ProjectReference Include="..\WebApiStudy.IDal\WebApiStudy.IDal.csproj" />
|
||
|
<ProjectReference Include="..\WebApiStudy.Model\WebApiStudy.Model.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|