You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.3 KiB
36 lines
1.3 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="SWDescription.txt" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="SWDescription.txt">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FreeSql" Version="3.2.812" />
|
|
<PackageReference Include="FreeSql.Provider.MySql" Version="3.2.812" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.27" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.27" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
|
<PackageReference Include="Yitter.IdGenerator" Version="1.0.14" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\QYMessageCenter.Business\QYMessageCenter.Business.csproj" />
|
|
<ProjectReference Include="..\QYMessageCenter.Common\QYMessageCenter.Common.csproj" />
|
|
<ProjectReference Include="..\QYMessageCenter.Model\QYMessageCenter.Model.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|