Added NightAlert project for travel kit
This commit is contained in:
4
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/.nuget/packages.config
vendored
Normal file
4
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/.nuget/packages.config
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="xunit.runner.console" version="2.0.0" />
|
||||
</packages>
|
||||
128
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/EngineIoClientDotNet.net45.csproj
vendored
Normal file
128
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/EngineIoClientDotNet.net45.csproj
vendored
Normal file
@@ -0,0 +1,128 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.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>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{842D8B13-DAF3-4919-80A0-03EFA3C17178}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>EngineIoClientDotNet</RootNamespace>
|
||||
<AssemblyName>EngineIoClientDotNet</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<NuGetPackageImportStamp>1fcf80f3</NuGetPackageImportStamp>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\net45\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<HintPath>packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="SuperSocket.ClientEngine, Version=0.9.0.0, Culture=neutral, PublicKeyToken=ee9af13f57f00acc, processorArchitecture=MSIL">
|
||||
<HintPath>packages\SuperSocket.ClientEngine.Core.0.9.0\lib\net45\SuperSocket.ClientEngine.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Collections.Immutable, Version=1.2.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>packages\System.Collections.Immutable.1.4.0\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="WebSocket4Net, Version=0.15.1.10, Culture=neutral, PublicKeyToken=eb4e154b696bf72a, processorArchitecture=MSIL">
|
||||
<HintPath>packages\WebSocket4Net.0.15.1\lib\net45\WebSocket4Net.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Client\EngineIOException.cs">
|
||||
<Link>Client\EngineIOException.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Client\HandshakeData.cs">
|
||||
<Link>Client\HandshakeData.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Client\Socket.cs">
|
||||
<Link>Client\Socket.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Client\Transport.cs">
|
||||
<Link>Client\Transport.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Client\Transports\Polling.cs">
|
||||
<Link>Client\Transports\Polling.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Client\Transports\PollingXHR.cs">
|
||||
<Link>Client\Transports\PollingXHR.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Client\Transports\WebSocket.cs">
|
||||
<Link>Client\Transports\WebSocket.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\ComponentEmitter\Emitter.cs">
|
||||
<Link>ComponentEmitter\Emitter.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Modules\Global.cs">
|
||||
<Link>Modules\Global.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Modules\LogManager.cs">
|
||||
<Link>Modules\LogManager.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Modules\ParseQS.cs">
|
||||
<Link>Modules\ParseQS.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Modules\ServerCertificate.cs">
|
||||
<Link>Modules\ServerCertificate.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Modules\UTF8.cs">
|
||||
<Link>Modules\UTF8.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Modules\UTF8Exception.cs">
|
||||
<Link>Modules\UTF8Exception.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Parser\Buffer.cs">
|
||||
<Link>Parser\Buffer.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Parser\ByteBuffer.cs">
|
||||
<Link>Parser\ByteBuffer.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Parser\IDecodePayloadCallback.cs">
|
||||
<Link>Parser\IDecodePayloadCallback.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Parser\IEncodeCallback.cs">
|
||||
<Link>Parser\IEncodeCallback.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Parser\Packet.cs">
|
||||
<Link>Parser\Packet.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Parser\Parser.cs">
|
||||
<Link>Parser\Parser.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\EngineIoClientDotNet.mono\Thread\EasyTimer.cs">
|
||||
<Link>Thread\EasyTimer.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="app.config" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.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>
|
||||
18
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/EngineIoClientDotNet.net45.nuspec
vendored
Normal file
18
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/EngineIoClientDotNet.net45.nuspec
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>$id$</id>
|
||||
<version>$version$</version>
|
||||
<title>$title$</title>
|
||||
<authors>$author$</authors>
|
||||
<owners>$author$</owners>
|
||||
<licenseUrl>http://LICENSE_URL_HERE_OR_DELETE_THIS_LINE</licenseUrl>
|
||||
<projectUrl>http://PROJECT_URL_HERE_OR_DELETE_THIS_LINE</projectUrl>
|
||||
<iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>$description$</description>
|
||||
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
|
||||
<copyright>Copyright 2014</copyright>
|
||||
<tags>Tag1 Tag2</tags>
|
||||
</metadata>
|
||||
</package>
|
||||
81
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/EngineIoClientDotNet.net45.sln
vendored
Normal file
81
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/EngineIoClientDotNet.net45.sln
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.23107.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EngineIoClientDotNet.net45", "EngineIoClientDotNet.net45.csproj", "{842D8B13-DAF3-4919-80A0-03EFA3C17178}"
|
||||
EndProject
|
||||
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "grunt", "..\..\grunt\", "{7F5CBDD0-5537-4B8B-AD7E-9F7E88600084}"
|
||||
ProjectSection(WebsiteProperties) = preProject
|
||||
TargetFrameworkMoniker = ".NETFramework,Version%3Dv4.0"
|
||||
Debug.AspNetCompiler.VirtualPath = "/grunt"
|
||||
Debug.AspNetCompiler.PhysicalPath = "..\..\grunt\"
|
||||
Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\grunt\"
|
||||
Debug.AspNetCompiler.Updateable = "true"
|
||||
Debug.AspNetCompiler.ForceOverwrite = "true"
|
||||
Debug.AspNetCompiler.FixedNames = "false"
|
||||
Debug.AspNetCompiler.Debug = "True"
|
||||
Release.AspNetCompiler.VirtualPath = "/grunt"
|
||||
Release.AspNetCompiler.PhysicalPath = "..\..\grunt\"
|
||||
Release.AspNetCompiler.TargetPath = "PrecompiledWeb\grunt\"
|
||||
Release.AspNetCompiler.Updateable = "true"
|
||||
Release.AspNetCompiler.ForceOverwrite = "true"
|
||||
Release.AspNetCompiler.FixedNames = "false"
|
||||
Release.AspNetCompiler.Debug = "False"
|
||||
VWDPort = "8678"
|
||||
SlnRelativePath = "..\..\grunt\"
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "TestServer", "..\..\TestServer\", "{7E50397C-1221-49A9-A5F1-8254AC4BFBA4}"
|
||||
ProjectSection(WebsiteProperties) = preProject
|
||||
TargetFrameworkMoniker = ".NETFramework,Version%3Dv4.0"
|
||||
Debug.AspNetCompiler.VirtualPath = "/TestServer"
|
||||
Debug.AspNetCompiler.PhysicalPath = "..\..\TestServer\"
|
||||
Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\TestServer\"
|
||||
Debug.AspNetCompiler.Updateable = "true"
|
||||
Debug.AspNetCompiler.ForceOverwrite = "true"
|
||||
Debug.AspNetCompiler.FixedNames = "false"
|
||||
Debug.AspNetCompiler.Debug = "True"
|
||||
Release.AspNetCompiler.VirtualPath = "/TestServer"
|
||||
Release.AspNetCompiler.PhysicalPath = "..\..\TestServer\"
|
||||
Release.AspNetCompiler.TargetPath = "PrecompiledWeb\TestServer\"
|
||||
Release.AspNetCompiler.Updateable = "true"
|
||||
Release.AspNetCompiler.ForceOverwrite = "true"
|
||||
Release.AspNetCompiler.FixedNames = "false"
|
||||
Release.AspNetCompiler.Debug = "False"
|
||||
VWDPort = "8671"
|
||||
SlnRelativePath = "..\..\TestServer\"
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EngineIoClientDotNet.Tests.net45", "..\EngineIoClientDotNet.Tests.net45\EngineIoClientDotNet.Tests.net45.csproj", "{BEFF0675-8A73-4012-9651-C253E06E0F87}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{238B4362-A8D9-40BC-863F-236FFD88643D}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
.nuget\packages.config = .nuget\packages.config
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{842D8B13-DAF3-4919-80A0-03EFA3C17178}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{842D8B13-DAF3-4919-80A0-03EFA3C17178}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{842D8B13-DAF3-4919-80A0-03EFA3C17178}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{842D8B13-DAF3-4919-80A0-03EFA3C17178}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{7F5CBDD0-5537-4B8B-AD7E-9F7E88600084}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7F5CBDD0-5537-4B8B-AD7E-9F7E88600084}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7F5CBDD0-5537-4B8B-AD7E-9F7E88600084}.Release|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7E50397C-1221-49A9-A5F1-8254AC4BFBA4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7E50397C-1221-49A9-A5F1-8254AC4BFBA4}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7E50397C-1221-49A9-A5F1-8254AC4BFBA4}.Release|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{BEFF0675-8A73-4012-9651-C253E06E0F87}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{BEFF0675-8A73-4012-9651-C253E06E0F87}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{BEFF0675-8A73-4012-9651-C253E06E0F87}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{BEFF0675-8A73-4012-9651-C253E06E0F87}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
35
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/Properties/AssemblyInfo.cs
vendored
Normal file
35
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/Properties/AssemblyInfo.cs
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("EngineIoClientDotNet")]
|
||||
[assembly: AssemblyDescription("Engine.IO Client Library for .Net")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Quobject Software")]
|
||||
[assembly: AssemblyProduct("EngineIoClientDotNet")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2018")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("a95e75cd-35e6-4e88-9e22-631e3fd01546")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.5")]
|
||||
[assembly: AssemblyFileVersion("1.0.5")]
|
||||
11
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/app.config
vendored
Normal file
11
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/app.config
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="SuperSocket.ClientEngine" publicKeyToken="ee9af13f57f00acc" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-0.9.0.0" newVersion="0.9.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
||||
7
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/packages.config
vendored
Normal file
7
ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.net45/packages.config
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net45" />
|
||||
<package id="SuperSocket.ClientEngine.Core" version="0.9.0" targetFramework="net45" />
|
||||
<package id="System.Collections.Immutable" version="1.4.0" targetFramework="net45" />
|
||||
<package id="WebSocket4Net" version="0.15.1" targetFramework="net45" />
|
||||
</packages>
|
||||
Reference in New Issue
Block a user