Test.csproj 899 B

123456789101112131415161718192021222324252627282930
  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. <ApplicationManifest>app.manifest</ApplicationManifest>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  10. <WarningLevel>0</WarningLevel>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  13. <WarningLevel>0</WarningLevel>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <PackageReference Include="Mapster" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\DataBase\DB_Proxima\DB_Proxima.csproj" />
  20. <ProjectReference Include="..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
  21. <ProjectReference Include="..\Data\DataService\DataService.csproj" />
  22. </ItemGroup>
  23. </Project>