forked from RevenantX/LiteNetLib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLiteNetLibWin81.csproj
More file actions
119 lines (119 loc) · 4.98 KB
/
LiteNetLibWin81.csproj
File metadata and controls
119 lines (119 loc) · 4.98 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4CCFFD6B-352C-4C90-8B4C-C70FDD7F2550}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LiteNetLibWin81</RootNamespace>
<AssemblyName>LiteNetLibWin81</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkProfile>Profile32</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;WINRT</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;WINRT</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\LiteNetLibWin81.XML</DocumentationFile>
<NoWarn>1591</NoWarn>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<!-- A reference to the entire .NET Framework is automatically included -->
<TargetPlatform Include="Windows, Version=8.1" />
<TargetPlatform Include="WindowsPhoneApp, Version=8.1" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\LiteNetLib\INetEventListener.cs">
<Link>INetEventListener.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\NatPunchModule.cs">
<Link>NatPunchModule.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\NetConstants.cs">
<Link>NetConstants.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\NetDebug.cs">
<Link>NetDebug.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\NetEndPoint.cs">
<Link>NetEndPoint.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\NetManager.cs">
<Link>NetManager.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\NetPacket.cs">
<Link>NetPacket.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\NetPacketPool.cs">
<Link>NetPacketPool.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\NetPeer.cs">
<Link>NetPeer.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\NetPeerCollection.cs">
<Link>NetPeerCollection.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\NetSocket.cs">
<Link>NetSocket.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\NetThread.cs">
<Link>NetThread.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\NetUtils.cs">
<Link>NetUtils.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\ReliableChannel.cs">
<Link>ReliableChannel.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\SequencedChannel.cs">
<Link>SequencedChannel.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\SimpleChannel.cs">
<Link>SimpleChannel.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\Utils\FastBitConverter.cs">
<Link>Utils\FastBitConverter.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\Utils\NetDataReader.cs">
<Link>Utils\NetDataReader.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\Utils\NetDataWriter.cs">
<Link>Utils\NetDataWriter.cs</Link>
</Compile>
<Compile Include="..\LiteNetLib\Utils\NetSerializer.cs">
<Link>Utils\NetSerializer.cs</Link>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>