kyy
2025-09-02 88e107de05870f36bfbc246aa9eb25b3bea7145e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project Sdk="Microsoft.NET.Sdk.Web">
 
    <PropertyGroup>
        <TargetFramework>net8.0</TargetFramework>
        <Nullable>enable</Nullable>
        <ImplicitUsings>enable</ImplicitUsings>
    </PropertyGroup>
 
    <ItemGroup>
        <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.8" />
        <PackageReference Include="SqlSugarCore" Version="5.1.4.167" />
        <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
    </ItemGroup>
 
    <ItemGroup>
        <ProjectReference Include="..\Gs.Toolbox\Gs.Toolbox.csproj" />
    </ItemGroup>
 
</Project>