123456789101112131415161718192021222324252627282930313233 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>disable</Nullable>
- <RootNamespace>Ips.AdcAlgorithm</RootNamespace>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DebugType>none</DebugType>
- <DebugSymbols>false</DebugSymbols>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="AdgUtil - 复制.cs" />
- </ItemGroup>
- <ItemGroup>
- <None Include="AdgUtil - 复制.cs" />
- <None Include="build\Package.targets" PackagePath="build\$(PackageId).targets" Pack="True" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="System.Text.Json" Version="8.0.5" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\ipslib\Ips.Library.Basic\Ips.Library.Basic.csproj" />
- <ProjectReference Include="..\..\..\ipslib\Ips.Library.CliLib\Ips.Library.CliLib.csproj" />
- <ProjectReference Include="..\..\..\ipslib\Ips.Library.Entity\Ips.Library.Entity.csproj" />
- <ProjectReference Include="..\Ips.Adc.Shared\Ips.Adc.Shared.csproj" />
- </ItemGroup>
- </Project>
|