|
|
@@ -1,7 +1,7 @@ |
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web"> |
|
|
|
|
|
|
|
<PropertyGroup> |
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework> |
|
|
|
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks> |
|
|
|
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel> |
|
|
|
<AssemblyName>MQTTnet.Server</AssemblyName> |
|
|
|
<RootNamespace>MQTTnet.Server</RootNamespace> |
|
|
@@ -41,11 +41,18 @@ |
|
|
|
<ItemGroup> |
|
|
|
<PackageReference Include="IronPython" Version="2.7.11" /> |
|
|
|
<PackageReference Include="IronPython.StdLib" Version="2.7.11" /> |
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.5" /> |
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" /> |
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="5.6.3" /> |
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="5.6.3" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' != 'net5.0'"> |
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.5" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'"> |
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.0" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<ProjectReference Include="..\MQTTnet.AspnetCore\MQTTnet.AspNetCore.csproj" /> |
|
|
|