1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
+
3
+ <PropertyGroup >
4
+ <TargetFrameworks >netstandard2.0;netcoreapp3.1;net5.0;net6.0</TargetFrameworks >
5
+ <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
6
+ <Description >
7
+ This is a support library to integrate AttributeRouting into MQTTnet with AspNetCore.
8
+
9
+ Easily create Controllers and Actions to process incoming MQTT messages using attribute-based routing against the incoming message topic.
10
+ </Description >
11
+ <Copyright >Copyright (c) Atlas Lift Tech Inc. 2021</Copyright >
12
+ <PackageLicenseExpression >MIT</PackageLicenseExpression >
13
+ <PackageTags >MQTT Message Queue Telemetry Transport MQTTClient MQTTServer Server MQTTBroker Broker NETStandard IoT InternetOfThings Messaging Hardware Arduino Sensor Actuator M2M ESP Smart Home Cities Automation Xamarin Blazor AspNetCore</PackageTags >
14
+ <Company >Atlas Lift Tech Inc.</Company >
15
+ <Authors >Anton Vishnyak</Authors >
16
+ <AssemblyVersion >0.3.16</AssemblyVersion >
17
+ <FileVersion >0.3.16</FileVersion >
18
+ <LangVersion >default</LangVersion >
19
+ <RepositoryUrl >https://github.com/Atlas-LiftTech/MQTTnet.AspNetCore.AttributeRouting</RepositoryUrl >
20
+ <RepositoryType >GIT</RepositoryType >
21
+ <PackageReleaseNotes >* Added support for passing an array of assemblies to use in route discovery</PackageReleaseNotes >
22
+ <Version >0.3.16</Version >
23
+ <PackageRequireLicenseAcceptance >false</PackageRequireLicenseAcceptance >
24
+ <PackageProjectUrl >https://github.com/Atlas-LiftTech/MQTTnet.AspNetCore.AttributeRouting</PackageProjectUrl >
25
+ <PublishRepositoryUrl >true</PublishRepositoryUrl >
26
+ <IncludeSymbols >true</IncludeSymbols >
27
+ <SymbolPackageFormat >snupkg</SymbolPackageFormat >
28
+ <EnableNETAnalyzers >true</EnableNETAnalyzers >
29
+ </PropertyGroup >
30
+
31
+ <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard2.0'" >
32
+ <PackageReference Include =" Microsoft.AspNetCore.Http.Connections" Version =" 1.1.0" />
33
+ </ItemGroup >
34
+
35
+ <ItemGroup Condition =" '$(TargetFramework)' == 'netcoreapp3.1'" >
36
+ <FrameworkReference Include =" Microsoft.AspNetCore.App" />
37
+ </ItemGroup >
38
+
39
+ <ItemGroup >
40
+ <PackageReference Include =" Microsoft.AspNetCore.Mvc.Core" Version =" 2.2.5" />
41
+ <PackageReference Include =" Microsoft.Bcl.HashCode" Version =" 1.1.1" />
42
+ <PackageReference Include =" MQTTnet" Version =" 4.0.1.184" />
43
+ <PackageReference Include =" MQTTnet.AspNetCore" Version =" 4.0.1.184" />
44
+ </ItemGroup >
45
+ </Project >
0 commit comments