-
Notifications
You must be signed in to change notification settings - Fork 0
/
TCPuny.csproj
57 lines (57 loc) · 2.47 KB
/
TCPuny.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
<?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>TCPuny</AssemblyName>
<OutputPath>$(TCPUNY)\Bin\</OutputPath>
<OutputType>Library</OutputType>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<Pax_Major_Version>0</Pax_Major_Version>
<Pax_Minor_Version>2</Pax_Minor_Version>
<Pax_Build_Version>0</Pax_Build_Version>
<Pax_Revision_Version>0</Pax_Revision_Version>
</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>$(PAX)\lib\PacketDotNet.dll</HintPath>
</Reference>
<Reference Include="SharpPcap, Version=4.2.0.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(PAX)\lib\SharpPcap.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=8.0.3.0, Culture=neutral, PublicKeyToken=null">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(PAX)\lib\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Pax_Lite, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>$(PAX)\Bin\Pax_Lite.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="Pax, Version=$(Pax_Major_Version).$(Pax_Minor_Version).$(Pax_Build_Version).$(Pax_Revision_Version), Culture=neutral, PublicKeyToken=null">
<HintPath>$(PAX)\Bin\Pax.exe</HintPath>
<SpecificVersion>True</SpecificVersion>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="IBerkeleySocket.cs" />
<Compile Include="TimerCB.cs" />
<Compile Include="TCB.cs" />
<Compile Include="TCP.cs" />
<Compile Include="TCwraP.cs" />
<None Include="$(PAX)\lib/SharpPcap.dll.config">
<Link>SharpPcap.dll.config</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<!--
<Target Name="Build">
<MakeDir Directories="$(OutputPath)" Condition="!Exists('$(OutputPath)')" />
<Csc Sources="@(Compile)" OutputAssembly="$(OutputPath)$(AssemblyName).exe" />
</Target>
-->
</Project>