-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExamples.csproj
More file actions
62 lines (62 loc) · 2.67 KB
/
Copy pathExamples.csproj
File metadata and controls
62 lines (62 loc) · 2.67 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
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
<?xml version="1.0" encoding="utf-8"?>
<!-- Hand-written .csproj file, based on instructions at https://msdn.microsoft.com/en-us/library/dd576348.aspx-->
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AssemblyName>Examples</AssemblyName>
<OutputPath>Bin\</OutputPath>
<OutputType>Library</OutputType>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Reference Include="System" />
<Reference Include="PacketDotNet, Version=0.10.0.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\PacketDotNet.dll</HintPath>
</Reference>
<Reference Include="SharpPcap, Version=4.2.0.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\SharpPcap.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=8.0.3.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Pax_Lite, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\Bin\Pax_Lite.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="Pax, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\Bin\Pax.exe</HintPath>
<SpecificVersion>False</SpecificVersion>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Hub.cs" />
<Compile Include="LearningSwitch.cs" />
<Compile Include="Mirror.cs" />
<Compile Include="Nat\ConnectionKey.cs" />
<Compile Include="Nat\ITransportState.cs" />
<Compile Include="Nat\NAT.cs" />
<Compile Include="Nat\NATBase.cs" />
<Compile Include="Nat\NatConnection.cs" />
<Compile Include="Nat\Node.cs" />
<Compile Include="Nat\NodeWithPort.cs" />
<Compile Include="Nat\PacketEncapsulation.cs" />
<Compile Include="Nat\TcpNAT.cs" />
<Compile Include="Nat\TcpState.cs" />
<Compile Include="Nat\UdpNAT.cs" />
<Compile Include="paxos\Paxos_Packet.cs" />
<Compile Include="paxos\Paxos.cs" />
<Compile Include="tcp_wrapper\TCP_Wrapper.cs" />
<Compile Include="packet_formats/Syslog_Packet.cs" />
<Compile Include="Test.cs" />
</ItemGroup>
<!--
<Target Name="Build">
<MakeDir Directories="$(OutputPath)" Condition="!Exists('$(OutputPath)')" />
<Csc Sources="@(Compile)" OutputAssembly="$(OutputPath)$(AssemblyName).exe" />
</Target>
-->
</Project>