shgx_tz_mom/ZR.Admin.WebApi/ZR.Admin.WebApi.csproj

66 lines
2.4 KiB
XML
Raw Normal View History

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>
2024-01-04 09:01:03 +08:00
<Nullable>disable</Nullable>
2022-03-06 14:26:05 +08:00
<ImplicitUsings>enable</ImplicitUsings>
2023-06-09 18:10:38 +08:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2024-01-04 09:01:03 +08:00
<ErrorReport>none</ErrorReport>
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-20 21:47:55 +08:00
<NoWarn>1701;1702;1591,8603,8602,8604,8600</NoWarn>
2024-01-04 09:01:03 +08:00
<DebugType>embedded</DebugType>
<Deterministic>True</Deterministic>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
<Deterministic>True</Deterministic>
<Optimize>False</Optimize>
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" />
2023-06-20 07:26:25 +08:00
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.7" />
2023-10-12 09:36:03 +08:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
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-06-20 07:26:25 +08:00
<PackageReference Include="NLog" Version="5.2.0" />
<PackageReference Include="NLog.Web.AspNetCore" Version="5.3.0" />
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>
2023-10-14 16:24:14 +08:00
<Folder Include="Images\" />
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
2024-01-04 09:01:03 +08:00
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</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>