123456789101112131415161718192021222324252627282930313233 |
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>net5.0</TargetFramework>
- <AssemblyName>UnitTests.Core</AssemblyName>
- </PropertyGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\..\unibase\platform.common\Platform.Common\Platform.Common.Publish.csproj" />
- </ItemGroup>
-
- <ItemGroup>
- <Reference Include="Unibase.Core">
- <HintPath>..\..\dlls_unibase\Unibase.Core.dll</HintPath>
- </Reference>
- <Reference Include="Unibase.DbProviders.MongoDbProvider">
- <HintPath>..\..\dlls_unibase\Unibase.DbProviders.MongoDbProvider.dll</HintPath>
- </Reference>
- <Reference Include="Unibase.DbProviders.PgSqlDbProvider">
- <HintPath>..\..\dlls_unibase\Unibase.DbProviders.PgSqlDbProvider.dll</HintPath>
- </Reference>
- <Reference Include="Unibase.Platform.Apps">
- <HintPath>..\..\dlls_unibase\Unibase.Platform.Apps.dll</HintPath>
- </Reference>
- <Reference Include="Unibase.Platform.Core">
- <HintPath>..\..\dlls_unibase\Unibase.Platform.Core.dll</HintPath>
- </Reference>
- <Reference Include="Unibase.Platform.Membership">
- <HintPath>..\..\dlls_unibase\Unibase.Platform.Membership.dll</HintPath>
- </Reference>
- </ItemGroup>
-
- </Project>
|