Blog.Core/Blog.Core.Services/Blog.Core.Services.csproj
Geralt_Zhang d0e4ff7757 添加公共项目属性配置文件
将`TargetFramework`属性迁移到`common.targets`作为方便管理
2023-02-02 20:42:46 +08:00

20 lines
596 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\build\common.targets" />
<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>