30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Controllers\V1\LoginController.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Asp.Versioning.Mvc.ApiExplorer" Version="8.1.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.16" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.16" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
|
|
<PackageReference Include="YuanXuan.TrackingSystem.SDK" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LearningOfficer.OA.Common\LearningOfficer.OA.Common.csproj" />
|
|
<ProjectReference Include="..\LearningOfficer.OA.Core\LearningOfficer.OA.Core.csproj" />
|
|
<ProjectReference Include="..\LearningOfficer.OA.Infrastructure\LearningOfficer.OA.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\LearningOfficer.OA.Services\LearningOfficer.OA.Services.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|