123456789101112131415161718192021 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>disable</Nullable>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DebugType>none</DebugType>
- <DebugSymbols>false</DebugSymbols>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="CliWrap" Version="3.8.2" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Ips.Library.Basic\Ips.Library.Basic.csproj" />
- <ProjectReference Include="..\Ips.Library.Entity\Ips.Library.Entity.csproj" />
- </ItemGroup>
- </Project>
|