Last active
June 22, 2019 13:00
-
-
Save fredrikhr/3d219a731ae0fe75212c88dd3614fe96 to your computer and use it in GitHub Desktop.
Blah
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>netcoreapp2.2</TargetFramework> | |
<RootNamespace>acme</RootNamespace> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="MQTTnet" Version="3.0.2"/> | |
</ItemGroup> | |
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace acme | |
{ | |
public static class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment