-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathCoderr.Server.PostgreSQL.csproj
More file actions
30 lines (27 loc) · 1.43 KB
/
Coderr.Server.PostgreSQL.csproj
File metadata and controls
30 lines (27 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Coderr.Server.PostgreSQL</RootNamespace>
<AssemblyName>Coderr.Server.PostgreSQL</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DotNetCqs" Version="2.0.14" />
<PackageReference Include="Griffin.Framework" Version="2.1.1" />
<PackageReference Include="log4net" Version="2.0.8" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="Npgsql" Version="4.1.1" />
<PackageReference Include="System.Data.SqlClient" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Coderr.Server.Api\Coderr.Server.Api.csproj" />
<ProjectReference Include="..\Coderr.Server.App\Coderr.Server.App.csproj" />
<ProjectReference Include="..\Coderr.Server.Domain\Coderr.Server.Domain.csproj" />
<ProjectReference Include="..\Coderr.Server.Infrastructure\Coderr.Server.Infrastructure.csproj" />
<ProjectReference Include="..\Coderr.Server.Abstractions\Coderr.Server.Abstractions.csproj" />
<ProjectReference Include="..\Coderr.Server.ReportAnalyzer.Abstractions\Coderr.Server.ReportAnalyzer.Abstractions.csproj" />
<ProjectReference Include="..\Coderr.Server.ReportAnalyzer\Coderr.Server.ReportAnalyzer.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Schema\*.sql" />
</ItemGroup>
</Project>