M2Mqtt.Net.csproj 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{A11AEF5A-B246-4FE8-8330-06DB73CC8074}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>uPLibrary.Networking.M2Mqtt</RootNamespace>
  12. <AssemblyName>M2Mqtt.Net</AssemblyName>
  13. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\bin\Debug\M2Mqtt.Net</OutputPath>
  22. <DefineConstants>TRACE;DEBUG;SSL</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <Prefer32Bit>false</Prefer32Bit>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>..\bin\Release\M2Mqtt.Net</OutputPath>
  31. <DefineConstants>TRACE;SSL</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <Prefer32Bit>false</Prefer32Bit>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. <Reference Include="System.Xml.Linq" />
  40. <Reference Include="System.Data.DataSetExtensions" />
  41. <Reference Include="Microsoft.CSharp" />
  42. <Reference Include="System.Data" />
  43. <Reference Include="System.Xml" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="Exceptions\MqttClientException.cs" />
  47. <Compile Include="Exceptions\MqttCommunicationException.cs" />
  48. <Compile Include="Exceptions\MqttConnectionException.cs" />
  49. <Compile Include="Exceptions\MqttTimeoutException.cs" />
  50. <Compile Include="IMqttNetworkChannel.cs" />
  51. <Compile Include="Internal\InternalEvent.cs" />
  52. <Compile Include="Internal\MsgInternalEvent.cs" />
  53. <Compile Include="Internal\MsgPublishedInternalEvent.cs" />
  54. <Compile Include="Messages\MqttMsgBase.cs" />
  55. <Compile Include="Messages\MqttMsgConnack.cs" />
  56. <Compile Include="Messages\MqttMsgConnect.cs" />
  57. <Compile Include="Messages\MqttMsgConnectEventArgs.cs" />
  58. <Compile Include="Messages\MqttMsgContext.cs" />
  59. <Compile Include="Messages\MqttMsgDisconnect.cs" />
  60. <Compile Include="Messages\MqttMsgPingReq.cs" />
  61. <Compile Include="Messages\MqttMsgPingResp.cs" />
  62. <Compile Include="Messages\MqttMsgPuback.cs" />
  63. <Compile Include="Messages\MqttMsgPubcomp.cs" />
  64. <Compile Include="Messages\MqttMsgPublish.cs" />
  65. <Compile Include="Messages\MqttMsgPublishedEventArgs.cs" />
  66. <Compile Include="Messages\MqttMsgPublishEventArgs.cs" />
  67. <Compile Include="Messages\MqttMsgPubrec.cs" />
  68. <Compile Include="Messages\MqttMsgPubrel.cs" />
  69. <Compile Include="Messages\MqttMsgSuback.cs" />
  70. <Compile Include="Messages\MqttMsgSubscribe.cs" />
  71. <Compile Include="Messages\MqttMsgSubscribedEventArgs.cs" />
  72. <Compile Include="Messages\MqttMsgSubscribeEventArgs.cs" />
  73. <Compile Include="Messages\MqttMsgUnsuback.cs" />
  74. <Compile Include="Messages\MqttMsgUnsubscribe.cs" />
  75. <Compile Include="Messages\MqttMsgUnsubscribedEventArgs.cs" />
  76. <Compile Include="Messages\MqttMsgUnsubscribeEventArgs.cs" />
  77. <Compile Include="MqttClient.cs" />
  78. <Compile Include="MqttSecurity.cs" />
  79. <Compile Include="Net\Fx.cs" />
  80. <Compile Include="Net\MqttNetworkChannel.cs" />
  81. <Compile Include="MqttSettings.cs" />
  82. <Compile Include="Properties\AssemblyInfo.cs" />
  83. <Compile Include="Session\MqttBrokerSession.cs" />
  84. <Compile Include="Session\MqttClientSession.cs" />
  85. <Compile Include="Session\MqttSession.cs" />
  86. <Compile Include="Utility\Trace.cs" />
  87. <Compile Include="Utility\QueueExtension.cs" />
  88. </ItemGroup>
  89. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  90. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  91. Other similar extension points exist, see Microsoft.Common.targets.
  92. <Target Name="BeforeBuild">
  93. </Target>
  94. <Target Name="AfterBuild">
  95. </Target>
  96. -->
  97. </Project>