Test.csproj 690 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <WarningLevel>0</WarningLevel>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <WarningLevel>0</WarningLevel>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
  16. <ProjectReference Include="..\Data\DataService\DataService.csproj" />
  17. </ItemGroup>
  18. </Project>