-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathCoderr.Server.Infrastructure.csproj
More file actions
30 lines (30 loc) · 1.39 KB
/
Coderr.Server.Infrastructure.csproj
File metadata and controls
30 lines (30 loc) · 1.39 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>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<RootNamespace>Coderr.Server.Infrastructure</RootNamespace>
<AssemblyName>Coderr.Server.Infrastructure</AssemblyName>
<Configurations>Debug;Release;Premise</Configurations>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Coderr.Client" Version="2.0.5" />
<PackageReference Include="DotNetCqs" Version="2.1.1" />
<PackageReference Include="DotNetCqs.Queues.AdoNet" Version="1.0.11" />
<PackageReference Include="Griffin.Framework" Version="2.1.1" />
<PackageReference Include="log4net" Version="2.0.14" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="System.Memory" Version="4.5.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Coderr.Server.Api\Coderr.Server.Api.csproj" />
<ProjectReference Include="..\Coderr.Server.Abstractions\Coderr.Server.Abstractions.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net452'">
<Reference Include="System.Configuration" />
<Reference Include="System.Messaging" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions">
<Version>3.1.22</Version>
</PackageReference>
</ItemGroup>
</Project>