Test.csproj 839 B

1234567891011121314151617181920212223242526272829
  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. <PackageReference Include="Mapster" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\DataBase\DB_Proxima\DB_Proxima.csproj" />
  19. <ProjectReference Include="..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
  20. <ProjectReference Include="..\Data\DataService\DataService.csproj" />
  21. </ItemGroup>
  22. </Project>