Blog.Core/Blog.Core.Services/Blog.Core.Services.csproj
ansonzhang 47b45a14c9 💯 Migrate to.NET 5.0
迁移到.net 5.0
2020-11-11 12:52:56 +00:00

22 lines
629 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Blog.Core.Api\bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Blog.Core\bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Blog.Core.IServices\Blog.Core.IServices.csproj" />
<ProjectReference Include="..\Blog.Core.Repository\Blog.Core.Repository.csproj" />
</ItemGroup>
</Project>