Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keesschollaart81 committed Sep 21, 2018
1 parent fa02719 commit 81c0b73
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,6 @@ Please find all working examples in the [sample project](./src/ExampleFunctions/

- [MQTTnet](https://github.com/chkr1011/MQTTnet)

## Beta & Roadmap

This package currently is in a beta stage. This is because it depends on the ```3.0.0-beta8``` version of [```Microsoft.Azure.WebJobs.Extensions```](https://github.com/Azure/azure-webjobs-sdk-extensions/releases). When this becomes final this package will be updated to the 1.0.0 version as well.

## MIT License
Copyright (c) 2018 Kees Schollaart

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Kees Schollaart</Authors>
Expand All @@ -10,7 +10,7 @@
<RepositoryType>git</RepositoryType>
<PackageLicenseUrl>https://github.com/keesschollaart81/CaseOnline.Azure.WebJobs.Extensions.Mqtt/blob/master/LICENSE</PackageLicenseUrl>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionSuffix>rc1</VersionSuffix>
<VersionSuffix></VersionSuffix>
<PackageTags>azure functions mqtt webjobs trigger binding function webjob</PackageTags>
<AssemblyName>CaseOnline.Azure.WebJobs.Extensions.Mqtt</AssemblyName>
<RootNamespace>CaseOnline.Azure.WebJobs.Extensions.Mqtt</RootNamespace>
Expand Down Expand Up @@ -45,7 +45,7 @@ For more information, please visit https://github.com/keesschollaart81/CaseOnlin
</PackageReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.0-rc1" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.0" />
<PackageReference Include="MQTTnet" Version="2.8.2" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void Dispose()
var mqttExtensionConfigProvider = _host.Services.GetService(typeof(IMqttConnectionFactory)) as MqttConnectionFactory;
mqttExtensionConfigProvider.DisconnectAll().Wait();

_jobHost.Stop();
_jobHost.StopAsync().Wait();
_host.Dispose();
_host = null;
}
Expand Down

0 comments on commit 81c0b73

Please sign in to comment.