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