12345678910111213141516171819202122232425262728293031323334353637 |
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>net5.0</TargetFramework>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="Npgsql" Version="5.0.7" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\..\platform.common\Platform.Common\Platform.Common.csproj" />
- <ProjectReference Include="..\..\platform\Platform.Objects\Platform.Objects.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>
|