30 lines
877 B
XML
30 lines
877 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MongoDB.Bson" Version="2.22.0" />
|
|
<PackageReference Include="MongoDB.Driver.Core" Version="2.22.0" />
|
|
<PackageReference Include="MongoDB.Driver" Version="2.22.0" />
|
|
</ItemGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<OutputPath>..\DouyinApi.Api\bin\Debug\</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<OutputPath>..\DouyinApi\bin\Release\</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MiniProfiler.AspNetCore.Mvc" Version="4.3.8" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DouyinApi.Common\DouyinApi.Common.csproj" />
|
|
<ProjectReference Include="..\DouyinApi.Model\DouyinApi.Model.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|