This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
Compoment
/
MQTTnet
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
added netcore 2.1 build
release/3.x.x
JanEggers
5 years ago
parent
cfc1b27950
commit
aee10ba6fa
3 changed files
with
6 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
Source/MQTTnet.AspnetCore/Client/Tcp/SocketSender.cs
+1
-1
Source/MQTTnet.AspnetCore/MQTTnet.AspNetCore.csproj
+1
-1
Tests/MQTTnet.Benchmarks/MQTTnet.Benchmarks.csproj
+ 4
- 0
Source/MQTTnet.AspnetCore/Client/Tcp/SocketSender.cs
View File
@@ -5,6 +5,10 @@ using System.Diagnostics;
using System.IO.Pipelines;
using System.Net.Sockets;
#if NETCOREAPP2_1
using System.Runtime.InteropServices;
#endif
namespace MQTTnet.AspNetCore.Client.Tcp
{
public class SocketSender
+ 1
- 1
Source/MQTTnet.AspnetCore/MQTTnet.AspNetCore.csproj
View File
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework
s
>netstandard2.0
;netcoreapp2.1
</TargetFramework
s
>
<Product />
<Company />
<Authors />
+ 1
- 1
Tests/MQTTnet.Benchmarks/MQTTnet.Benchmarks.csproj
View File
@@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<DebugType>Full</DebugType>
<TargetFramework Condition=" '$(OS)' == 'Windows_NT' ">net461</TargetFramework>
<TargetFramework
s
Condition=" '$(OS)' == 'Windows_NT' ">net461
;netcoreapp2.1
</TargetFramework
s
>
<TargetFramework Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp2.1</TargetFramework>
<LangVersion>7.2</LangVersion>
</PropertyGroup>
Write
Preview
Loading…
Cancel
Save