aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data/DevHive.Data.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data/DevHive.Data.csproj')
-rw-r--r--src/Data/DevHive.Data/DevHive.Data.csproj34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/Data/DevHive.Data/DevHive.Data.csproj b/src/Data/DevHive.Data/DevHive.Data.csproj
new file mode 100644
index 0000000..62b61dc
--- /dev/null
+++ b/src/Data/DevHive.Data/DevHive.Data.csproj
@@ -0,0 +1,34 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>net5.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="AutoMapper" Version="10.1.1" />
+ <PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.1.0" />
+
+ <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.1" />
+
+ <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.1">
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ <PrivateAssets>all</PrivateAssets>
+ </PackageReference>
+
+ <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\DevHive.Data.Models\DevHive.Data.Models.csproj" />
+
+ <ProjectReference Include="..\DevHive.Data.Tests\DevHive.Data.Tests.csproj" />
+
+ <ProjectReference Include="..\..\Common\DevHive.Common.Models\DevHive.Common.csproj" />
+ </ItemGroup>
+
+ <PropertyGroup>
+ <EnableNETAnalyzers>true</EnableNETAnalyzers>
+ <AnalysisLevel>latest</AnalysisLevel>
+ </PropertyGroup>
+
+</Project>