-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStompClient.csproj
More file actions
27 lines (24 loc) · 1005 Bytes
/
StompClient.csproj
File metadata and controls
27 lines (24 loc) · 1005 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>9.0</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>Punksoft.StompClient</PackageId>
<Version>0.0.2</Version>
<Authors>Punksoft</Authors>
<Company>Punksoft</Company>
<Description>Simple STOMP client library</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/punkesta/stompclient</RepositoryUrl>
<PackageTags>stomp</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Collections.NET" Version="1.13.0"/>
<PackageReference Include="Websocket.Client" Version="5.2.0"/>
</ItemGroup>
</Project>