2021-08-23 16:57:25 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2022-03-06 14:26:05 +08:00
|
|
|
|
<PropertyGroup>
|
2022-11-18 13:26:39 +08:00
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2022-03-06 14:26:05 +08:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2023-02-13 21:41:08 +08:00
|
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
2022-03-06 14:26:05 +08:00
|
|
|
|
</PropertyGroup>
|
2023-02-23 08:46:39 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2023-04-24 08:34:04 +08:00
|
|
|
|
<DocumentationFile>ZRAdmin.xml</DocumentationFile>
|
2023-04-20 21:47:55 +08:00
|
|
|
|
<NoWarn>1701;1702;1591,8603,8602,8604,8600</NoWarn>
|
2023-02-23 08:46:39 +08:00
|
|
|
|
</PropertyGroup>
|
2022-03-06 14:26:05 +08:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\ZR.CodeGenerator\ZR.CodeGenerator.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\ZR.Service\ZR.Service.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\ZR.Tasks\ZR.Tasks.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-02-22 13:44:59 +08:00
|
|
|
|
<PackageReference Include="AspNetCoreRateLimit" Version="5.0.0" />
|
2023-04-16 09:52:57 +08:00
|
|
|
|
<PackageReference Include="Lazy.Captcha.Core" Version="2.0.3" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.5" />
|
2023-02-22 13:44:59 +08:00
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
2022-12-11 16:26:35 +08:00
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Filters" Version="7.0.6" />
|
2022-03-06 14:26:05 +08:00
|
|
|
|
<PackageReference Include="UAParser" Version="3.1.47" />
|
|
|
|
|
|
<PackageReference Include="IPTools.China" Version="1.6.0" />
|
2023-05-11 08:12:26 +08:00
|
|
|
|
<PackageReference Include="NLog" Version="5.1.4" />
|
|
|
|
|
|
<PackageReference Include="NLog.Web.AspNetCore" Version="5.2.3" />
|
2022-03-06 14:26:05 +08:00
|
|
|
|
<PackageReference Include="Mapster" Version="7.3.0" />
|
2023-04-16 09:52:57 +08:00
|
|
|
|
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="2.88.3" />
|
2022-03-06 14:26:05 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Folder Include="Controllers\" />
|
2023-03-15 16:00:16 +08:00
|
|
|
|
<Folder Include="Properties\PublishProfiles\" />
|
2022-03-06 14:26:05 +08:00
|
|
|
|
</ItemGroup>
|
2022-04-15 20:00:08 +08:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-23 08:46:39 +08:00
|
|
|
|
<None Update="ip2region.db">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2022-04-15 20:00:08 +08:00
|
|
|
|
</ItemGroup>
|
2021-08-23 16:57:25 +08:00
|
|
|
|
</Project>
|