Base repository for all unit tests
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

UnitTests.Core.Publish.csproj 1.2KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <AssemblyName>UnitTests.Core</AssemblyName>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <ProjectReference Include="..\..\unibase\platform.common\Platform.Common\Platform.Common.Publish.csproj" />
  8. </ItemGroup>
  9. <ItemGroup>
  10. <Reference Include="Unibase.Core">
  11. <HintPath>..\..\dlls_unibase\Unibase.Core.dll</HintPath>
  12. </Reference>
  13. <Reference Include="Unibase.DbProviders.MongoDbProvider">
  14. <HintPath>..\..\dlls_unibase\Unibase.DbProviders.MongoDbProvider.dll</HintPath>
  15. </Reference>
  16. <Reference Include="Unibase.DbProviders.PgSqlDbProvider">
  17. <HintPath>..\..\dlls_unibase\Unibase.DbProviders.PgSqlDbProvider.dll</HintPath>
  18. </Reference>
  19. <Reference Include="Unibase.Platform.Apps">
  20. <HintPath>..\..\dlls_unibase\Unibase.Platform.Apps.dll</HintPath>
  21. </Reference>
  22. <Reference Include="Unibase.Platform.Core">
  23. <HintPath>..\..\dlls_unibase\Unibase.Platform.Core.dll</HintPath>
  24. </Reference>
  25. <Reference Include="Unibase.Platform.Membership">
  26. <HintPath>..\..\dlls_unibase\Unibase.Platform.Membership.dll</HintPath>
  27. </Reference>
  28. </ItemGroup>
  29. </Project>