-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathVIEApps.Components.WebSockets.csproj
More file actions
45 lines (41 loc) · 2.05 KB
/
VIEApps.Components.WebSockets.csproj
File metadata and controls
45 lines (41 loc) · 2.05 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>net.vieapps.Components.WebSockets</RootNamespace>
<WarningLevel>3</WarningLevel>
<DocumentationFile>bin\$(Configuration)\netstandard2.0\VIEApps.Components.WebSockets.xml</DocumentationFile>
<AssemblyName>VIEApps.Components.WebSockets</AssemblyName>
<AssemblyTitle>VIEApps NGX WebSockets</AssemblyTitle>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>../VIEApps.Components.snk</AssemblyOriginatorKeyFile>
<AssemblyVersion>10.2.1906.2</AssemblyVersion>
<FileVersion>10.2.1906.2</FileVersion>
<InformationalVersion>v10.2.netstandard-2+rev:2019.06.12-async.close</InformationalVersion>
<Product>VIEApps NGX</Product>
<Company>VIEApps.net</Company>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageId>VIEApps.Components.WebSockets</PackageId>
<Version>10.2.1906.2</Version>
<Title>VIEApps NGX WebSockets</Title>
<Description>High performance WebSocket on .NET Standard 2.0 (both server and client - standalone or wrapper of System.Net.WebSockets.WebSocket)</Description>
<Authors>VIEApps.net</Authors>
<Copyright>© 2019 VIEApps.net</Copyright>
<PackageLicense>LICENSE.md</PackageLicense>
<PackageOutputPath>..\</PackageOutputPath>
<PackageTags>websocket;websockets;websocket-client;websocket-server;websocket-wrapper;vieapps;vieapps.components</PackageTags>
<PackageReleaseNotes>Improvement: add async close methods</PackageReleaseNotes>
<PackageProjectUrl>https://vieapps.net/</PackageProjectUrl>
<PackageIconUrl>https://github.com/vieapps/Components.Utility/raw/master/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/vieapps/Components.WebSockets</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Remove=".DS_Store" />
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="LICENSE.md" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="VIEApps.Components.Utility" Version="10.2.1906.2" />
</ItemGroup>
</Project>