forked from finos/plexus-interop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlexus.Interop.Client.csproj
21 lines (17 loc) · 1.13 KB
/
Plexus.Interop.Client.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../Common.csproj" />
<PropertyGroup>
<TargetFrameworks Condition="'$(CORE_ONLY)' == '' And '$(NET4_ONLY)' == ''">netstandard2.0;net45</TargetFrameworks>
<TargetFrameworks Condition="'$(NET4_ONLY)' != ''">net45</TargetFrameworks>
<TargetFrameworks Condition="'$(CORE_ONLY)' != ''">netstandard2.0</TargetFrameworks>
<RootNamespace>Plexus.Interop</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Plexus.Interop.Client.Core\Plexus.Interop.Client.Core.csproj" />
<ProjectReference Include="..\Plexus.Interop.Client.Marshalling.Protobuf\Plexus.Interop.Client.Marshalling.Protobuf.csproj" />
<ProjectReference Include="..\Plexus.Interop.Protocol.Protobuf\Plexus.Interop.Protocol.Protobuf.csproj" />
<ProjectReference Include="..\Plexus.Interop.Protocol\Plexus.Interop.Protocol.csproj" />
<ProjectReference Include="..\Plexus.Interop.Transport.Transmission.Pipes\Plexus.Interop.Transport.Transmission.Pipes.csproj" />
<ProjectReference Include="..\Plexus.Interop.Transport\Plexus.Interop.Transport.csproj" />
</ItemGroup>
</Project>