M2Mqtt.csproj 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>TRACE;DEBUG;SSL</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE;SSL</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="System" />
  35. <Reference Include="System.Core" />
  36. <Reference Include="System.Xml.Linq" />
  37. <Reference Include="System.Data.DataSetExtensions" />
  38. <Reference Include="Microsoft.CSharp" />
  39. <Reference Include="System.Data" />
  40. <Reference Include="System.Xml" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Compile Include="Exceptions\MqttClientException.cs" />
  44. <Compile Include="Exceptions\MqttCommunicationException.cs" />
  45. <Compile Include="Exceptions\MqttConnectionException.cs" />
  46. <Compile Include="Exceptions\MqttTimeoutException.cs" />
  47. <Compile Include="IMqttNetworkChannel.cs" />
  48. <Compile Include="Messages\MqttMsgBase.cs" />
  49. <Compile Include="Messages\MqttMsgConnack.cs" />
  50. <Compile Include="Messages\MqttMsgConnect.cs" />
  51. <Compile Include="Messages\MqttMsgConnectEventArgs.cs" />
  52. <Compile Include="Messages\MqttMsgContext.cs" />
  53. <Compile Include="Messages\MqttMsgDisconnect.cs" />
  54. <Compile Include="Messages\MqttMsgPingReq.cs" />
  55. <Compile Include="Messages\MqttMsgPingResp.cs" />
  56. <Compile Include="Messages\MqttMsgPuback.cs" />
  57. <Compile Include="Messages\MqttMsgPubcomp.cs" />
  58. <Compile Include="Messages\MqttMsgPublish.cs" />
  59. <Compile Include="Messages\MqttMsgPublishedEventArgs.cs" />
  60. <Compile Include="Messages\MqttMsgPublishEventArgs.cs" />
  61. <Compile Include="Messages\MqttMsgPubrec.cs" />
  62. <Compile Include="Messages\MqttMsgPubrel.cs" />
  63. <Compile Include="Messages\MqttMsgSuback.cs" />
  64. <Compile Include="Messages\MqttMsgSubscribe.cs" />
  65. <Compile Include="Messages\MqttMsgSubscribedEventArgs.cs" />
  66. <Compile Include="Messages\MqttMsgSubscribeEventArgs.cs" />
  67. <Compile Include="Messages\MqttMsgUnsuback.cs" />
  68. <Compile Include="Messages\MqttMsgUnsubscribe.cs" />
  69. <Compile Include="Messages\MqttMsgUnsubscribedEventArgs.cs" />
  70. <Compile Include="Messages\MqttMsgUnsubscribeEventArgs.cs" />
  71. <Compile Include="MqttClient.cs" />
  72. <Compile Include="Net\Fx.cs" />
  73. <Compile Include="Net\MqttNetworkChannel.cs" />
  74. <Compile Include="MqttSettings.cs" />
  75. <Compile Include="Properties\AssemblyInfo.cs" />
  76. <Compile Include="Session\MqttBrokerSession.cs" />
  77. <Compile Include="Session\MqttClientSession.cs" />
  78. <Compile Include="Session\MqttSession.cs" />
  79. <Compile Include="Utility\Trace.cs" />
  80. <Compile Include="Utility\QueueExtension.cs" />
  81. </ItemGroup>
  82. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  83. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  84. Other similar extension points exist, see Microsoft.Common.targets.
  85. <Target Name="BeforeBuild">
  86. </Target>
  87. <Target Name="AfterBuild">
  88. </Target>
  89. -->
  90. </Project>