Added NightAlert project for travel kit
This commit is contained in:
35
ThirdParty/EngineIoClientDotNet/grunt/templates/AssemblyInfo.cs
vendored
Normal file
35
ThirdParty/EngineIoClientDotNet/grunt/templates/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("@VERSION@")]
|
||||
[assembly: AssemblyFileVersion("@VERSION@")]
|
||||
59
ThirdParty/EngineIoClientDotNet/grunt/templates/EngineIoClientDotNet - with xamarin.nuspec
vendored
Normal file
59
ThirdParty/EngineIoClientDotNet/grunt/templates/EngineIoClientDotNet - with xamarin.nuspec
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>EngineIoClientDotNet</id>
|
||||
<version>@VERSION@</version>
|
||||
<title>EngineIoClientDotNet</title>
|
||||
<authors>Matthias Ludwig</authors>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||
<dependencies>
|
||||
<group targetFramework="netcore45">
|
||||
<dependency id="Newtonsoft.Json" version="8.0.1" />
|
||||
</group>
|
||||
<group targetFramework="portable-wpa81+wp81">
|
||||
<dependency id="Newtonsoft.Json" version="8.0.1" />
|
||||
</group>
|
||||
<group targetFramework="net35">
|
||||
<dependency id="WebSocket4Net" version="0.14.1" />
|
||||
<dependency id="Newtonsoft.Json" version="8.0.1" />
|
||||
<dependency id="System.Threading.Tasks.Unofficial" version="3.1.0" />
|
||||
</group>
|
||||
<group targetFramework="net40">
|
||||
<dependency id="WebSocket4Net" version="0.14.1" />
|
||||
<dependency id="Newtonsoft.Json" version="8.0.1" />
|
||||
</group>
|
||||
<group targetFramework="net45">
|
||||
<dependency id="WebSocket4Net" version="0.14.1" />
|
||||
<dependency id="Newtonsoft.Json" version="8.0.1" />
|
||||
</group>
|
||||
<group targetFramework="windowsphone8">
|
||||
<dependency id="WebSocket4Net" version="0.12.0" />
|
||||
<dependency id="Newtonsoft.Json" version="8.0.1" />
|
||||
</group>
|
||||
<group targetFramework="monoandroid10">
|
||||
<dependency id="WebSocket4Net" version="0.14.1" />
|
||||
<dependency id="Newtonsoft.Json" version="8.0.1" />
|
||||
</group>
|
||||
<group targetFramework="xamarinios10">
|
||||
<dependency id="WebSocket4Net" version="0.14.1" />
|
||||
<dependency id="Newtonsoft.Json" version="8.0.1" />
|
||||
</group>
|
||||
<group targetFramework="Xamarin.Mac20">
|
||||
<dependency id="WebSocket4Net" version="0.14.1" />
|
||||
<dependency id="Newtonsoft.Json" version="8.0.1" />
|
||||
</group>
|
||||
<group targetFramework="monotouch10">
|
||||
<dependency id="WebSocket4Net" version="0.14.1" />
|
||||
<dependency id="Newtonsoft.Json" version="8.0.1" />
|
||||
</group>
|
||||
</dependencies>
|
||||
<projectUrl>https://github.com/Quobject/EngineIoClientDotNet/</projectUrl>
|
||||
<description>This is the Engine.IO Client Library for C#.</description>
|
||||
<summary>This library supports all of the features the JS client does, including events, options and upgrading transport. EngineIoClientDotNet has a similar api to those of the JavaScript client.</summary>
|
||||
<tags>engine.io.client</tags>
|
||||
<frameworkAssemblies>
|
||||
<frameworkAssembly assemblyName="System.Web" targetFramework="net45" />
|
||||
</frameworkAssemblies>
|
||||
</metadata>
|
||||
</package>
|
||||
41
ThirdParty/EngineIoClientDotNet/grunt/templates/EngineIoClientDotNet.nuspec
vendored
Normal file
41
ThirdParty/EngineIoClientDotNet/grunt/templates/EngineIoClientDotNet.nuspec
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>EngineIoClientDotNet</id>
|
||||
<version>@VERSION@</version>
|
||||
<title>EngineIoClientDotNet</title>
|
||||
<authors>Matthias Ludwig</authors>
|
||||
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||
<dependencies>
|
||||
<group targetFramework="net35">
|
||||
<dependency id="WebSocket4Net" version="0.15.1" />
|
||||
<dependency id="SuperSocket.ClientEngine.Core" version="0.9.0" />
|
||||
<dependency id="Newtonsoft.Json" version="9.0.1" />
|
||||
<dependency id="System.Threading.Tasks.Unofficial" version="3.1.0" />
|
||||
</group>
|
||||
<group targetFramework="net40">
|
||||
<dependency id="WebSocket4Net" version="0.15.1" />
|
||||
<dependency id="SuperSocket.ClientEngine.Core" version="0.9.0" />
|
||||
<dependency id="Newtonsoft.Json" version="9.0.1" />
|
||||
</group>
|
||||
<group targetFramework="net45">
|
||||
<dependency id="WebSocket4Net" version="0.15.1" />
|
||||
<dependency id="SuperSocket.ClientEngine.Core" version="0.9.0" />
|
||||
<dependency id="System.Collections.Immutable" version="1.4.0" />
|
||||
<dependency id="Newtonsoft.Json" version="9.0.1" />
|
||||
</group>
|
||||
<group targetFramework="netstandard1.3">
|
||||
<dependency id="WebSocket4Net" version="0.15.1" />
|
||||
<dependency id="System.Collections.Immutable" version="1.4.0" />
|
||||
<dependency id="Newtonsoft.Json" version="9.0.1" />
|
||||
|
||||
<dependency id="System.Net.Requests" version="4.3.0" />
|
||||
</group>
|
||||
</dependencies>
|
||||
<projectUrl>https://github.com/Quobject/EngineIoClientDotNet/</projectUrl>
|
||||
<description>This is the Engine.IO Client Library for C#.</description>
|
||||
<summary>This library supports all of the features the JS client does, including events, options and upgrading transport. EngineIoClientDotNet has a similar api to those of the JavaScript client.</summary>
|
||||
<tags>engine.io.client</tags>
|
||||
</metadata>
|
||||
</package>
|
||||
Reference in New Issue
Block a user