M2MqttMono.csproj 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{9B706DEC-4CE7-4764-BDBE-8A5F855E5857}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <RootNamespace>uPLibrary.Networking.M2Mqtt</RootNamespace>
  11. <AssemblyName>M2Mqtt</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>bin\Debug\Mono</OutputPath>
  18. <DefineConstants>DEBUG;SSL</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <ConsolePause>false</ConsolePause>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  24. <DebugType>none</DebugType>
  25. <Optimize>false</Optimize>
  26. <OutputPath>bin\Release\Mono</OutputPath>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <ConsolePause>false</ConsolePause>
  30. <DefineConstants>SSL</DefineConstants>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="System" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Compile Include="Exceptions\MqttClientException.cs" />
  37. <Compile Include="Exceptions\MqttCommunicationException.cs" />
  38. <Compile Include="Exceptions\MqttConnectionException.cs" />
  39. <Compile Include="Exceptions\MqttTimeoutException.cs" />
  40. <Compile Include="Messages\MqttMsgBase.cs" />
  41. <Compile Include="Messages\MqttMsgConnack.cs" />
  42. <Compile Include="Messages\MqttMsgConnect.cs" />
  43. <Compile Include="Messages\MqttMsgConnectEventArgs.cs" />
  44. <Compile Include="Messages\MqttMsgContext.cs" />
  45. <Compile Include="Messages\MqttMsgDisconnect.cs" />
  46. <Compile Include="Messages\MqttMsgPingReq.cs" />
  47. <Compile Include="Messages\MqttMsgPingResp.cs" />
  48. <Compile Include="Messages\MqttMsgPuback.cs" />
  49. <Compile Include="Messages\MqttMsgPubcomp.cs" />
  50. <Compile Include="Messages\MqttMsgPublish.cs" />
  51. <Compile Include="Messages\MqttMsgPublishEventArgs.cs" />
  52. <Compile Include="Messages\MqttMsgPublishedEventArgs.cs" />
  53. <Compile Include="Messages\MqttMsgPubrec.cs" />
  54. <Compile Include="Messages\MqttMsgPubrel.cs" />
  55. <Compile Include="Messages\MqttMsgSuback.cs" />
  56. <Compile Include="Messages\MqttMsgSubscribe.cs" />
  57. <Compile Include="Messages\MqttMsgSubscribedEventArgs.cs" />
  58. <Compile Include="Messages\MqttMsgSubscribeEventArgs.cs" />
  59. <Compile Include="Messages\MqttMsgUnsuback.cs" />
  60. <Compile Include="Messages\MqttMsgUnsubscribe.cs" />
  61. <Compile Include="Messages\MqttMsgUnsubscribedEventArgs.cs" />
  62. <Compile Include="Messages\MqttMsgUnsubscribeEventArgs.cs" />
  63. <Compile Include="MqttClient.cs" />
  64. <Compile Include="Properties\AssemblyInfo.cs" />
  65. <Compile Include="Net\Fx.cs" />
  66. <Compile Include="Net\MqttNetworkChannel.cs" />
  67. <Compile Include="MqttSettings.cs" />
  68. <Compile Include="Utility\QueueExtension.cs" />
  69. <Compile Include="IMqttNetworkChannel.cs" />
  70. <Compile Include="Utility\Trace.cs" />
  71. </ItemGroup>
  72. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  73. </Project>