Blog.Core/Blog.Core.Services/Blog.Core.Services.csproj

26 lines
823 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2018-08-22 12:18:14 +08:00
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
2018-08-22 12:18:14 +08:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2020-06-22 12:04:09 +08:00
<OutputPath>..\Blog.Core.Api\bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Blog.Core\bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="9.0.0" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="7.0.0" />
</ItemGroup>
2018-11-07 12:54:10 +08:00
<ItemGroup>
<ProjectReference Include="..\Blog.Core.IServices\Blog.Core.IServices.csproj" />
2020-07-30 18:33:09 +08:00
<ProjectReference Include="..\Blog.Core.Repository\Blog.Core.Repository.csproj" />
</ItemGroup>
2018-08-22 12:18:14 +08:00
</Project>