33 lines
1020 B
XML
33 lines
1020 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Platforms>AnyCPU;x86;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="compilerconfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="compilerconfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Negotiate" Version="6.0.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MP.MONO.Core\MP.MONO.Core.csproj" />
|
|
<ProjectReference Include="..\MP.MONO.Data\MP.MONO.Data.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|