This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathTransport.csproj
66 lines (66 loc) · 2.72 KB
/
Transport.csproj
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{BDCCCCCD-21A8-446E-840B-68718C49E7D4}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>IPC.Managed</RootNamespace>
<AssemblyName>IPC.Managed.Transport</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<AssemblyClsCompliant>false</AssemblyClsCompliant>
<PlatformTarget>x64</PlatformTarget>
<TargetFrameworkProfile />
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\IPC.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<OutputPath>..\x64\Debug\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>..\x64\Release\</OutputPath>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Managed\Build\Managed.vcxproj">
<Project>{705098F7-93DC-4954-8165-FDDCD66231F0}</Project>
<Name>Managed</Name>
</ProjectReference>
<ProjectReference Include="..\Object\Object.csproj">
<Project>{2a0b90ac-9117-48da-b04c-ff194498d95d}</Project>
<Name>Object</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="ComponentEventArgs.cs" />
<Compile Include="Config.cs" />
<Compile Include="ErrorEventArgs.cs" />
<Compile Include="IAccessor.cs" />
<Compile Include="IBackgroundError.cs" />
<Compile Include="IClient.cs" />
<Compile Include="IClientAccessor.cs" />
<Compile Include="IClientConnector.cs" />
<Compile Include="IComponent.cs" />
<Compile Include="IServer.cs" />
<Compile Include="IServerAcceptor.cs" />
<Compile Include="IServersAccessor.cs" />
<Compile Include="ITransport.cs" />
<Compile Include="TransportFactory.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>