M2Mqtt.Mono.csproj 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.Mono</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\M2Mqtt.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\M2Mqtt.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="IMqttNetworkChannel.cs" />
  41. <Compile Include="Internal\InternalEvent.cs" />
  42. <Compile Include="Internal\MsgInternalEvent.cs" />
  43. <Compile Include="Internal\MsgPublishedInternalEvent.cs" />
  44. <Compile Include="Messages\MqttMsgBase.cs" />
  45. <Compile Include="Messages\MqttMsgConnack.cs" />
  46. <Compile Include="Messages\MqttMsgConnect.cs" />
  47. <Compile Include="Messages\MqttMsgConnectEventArgs.cs" />
  48. <Compile Include="Messages\MqttMsgContext.cs" />
  49. <Compile Include="Messages\MqttMsgDisconnect.cs" />
  50. <Compile Include="Messages\MqttMsgPingReq.cs" />
  51. <Compile Include="Messages\MqttMsgPingResp.cs" />
  52. <Compile Include="Messages\MqttMsgPuback.cs" />
  53. <Compile Include="Messages\MqttMsgPubcomp.cs" />
  54. <Compile Include="Messages\MqttMsgPublish.cs" />
  55. <Compile Include="Messages\MqttMsgPublishedEventArgs.cs" />
  56. <Compile Include="Messages\MqttMsgPublishEventArgs.cs" />
  57. <Compile Include="Messages\MqttMsgPubrec.cs" />
  58. <Compile Include="Messages\MqttMsgPubrel.cs" />
  59. <Compile Include="Messages\MqttMsgSuback.cs" />
  60. <Compile Include="Messages\MqttMsgSubscribe.cs" />
  61. <Compile Include="Messages\MqttMsgSubscribedEventArgs.cs" />
  62. <Compile Include="Messages\MqttMsgSubscribeEventArgs.cs" />
  63. <Compile Include="Messages\MqttMsgUnsuback.cs" />
  64. <Compile Include="Messages\MqttMsgUnsubscribe.cs" />
  65. <Compile Include="Messages\MqttMsgUnsubscribedEventArgs.cs" />
  66. <Compile Include="Messages\MqttMsgUnsubscribeEventArgs.cs" />
  67. <Compile Include="MqttClient.cs" />
  68. <Compile Include="MqttSecurity.cs" />
  69. <Compile Include="Net\Fx.cs" />
  70. <Compile Include="Net\MqttNetworkChannel.cs" />
  71. <Compile Include="MqttSettings.cs" />
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. <Compile Include="Session\MqttBrokerSession.cs" />
  74. <Compile Include="Session\MqttClientSession.cs" />
  75. <Compile Include="Session\MqttSession.cs" />
  76. <Compile Include="Utility\Trace.cs" />
  77. <Compile Include="Utility\QueueExtension.cs" />
  78. </ItemGroup>
  79. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  80. </Project>