M2Mqtt.NetMf43.csproj 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. <AssemblyName>M2Mqtt.NetMf</AssemblyName>
  5. <OutputType>Library</OutputType>
  6. <RootNamespace>uPLibrary.Networking.M2Mqtt</RootNamespace>
  7. <ProjectTypeGuids>{b69e3092-b931-443c-abe7-7e7b65f2a37f};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  8. <ProductVersion>9.0.21022</ProductVersion>
  9. <SchemaVersion>2.0</SchemaVersion>
  10. <ProjectGuid>{6A6D540B-8554-4FFD-8884-8BEFCCD9AD41}</ProjectGuid>
  11. <TargetFrameworkVersion>v4.3</TargetFrameworkVersion>
  12. <NetMfTargetsBaseDir Condition="'$(NetMfTargetsBaseDir)'==''">$(MSBuildExtensionsPath32)\Microsoft\.NET Micro Framework\</NetMfTargetsBaseDir>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <OutputPath>..\bin\Debug\M2Mqtt.NetMf43\</OutputPath>
  19. <DefineConstants>DEBUG;TRACE,MF_FRAMEWORK_VERSION_V4_3,SSL</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  24. <DebugType>pdbonly</DebugType>
  25. <Optimize>true</Optimize>
  26. <OutputPath>..\bin\Release\M2Mqtt.NetMf43\</OutputPath>
  27. <DefineConstants>TRACE,MF_FRAMEWORK_VERSION_V4_3,SSL</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. </PropertyGroup>
  31. <Import Project="$(NetMfTargetsBaseDir)$(TargetFrameworkVersion)\CSharp.Targets" />
  32. <ItemGroup>
  33. <Compile Include="Exceptions\MqttClientException.cs" />
  34. <Compile Include="Exceptions\MqttCommunicationException.cs" />
  35. <Compile Include="Exceptions\MqttConnectionException.cs" />
  36. <Compile Include="Exceptions\MqttTimeoutException.cs" />
  37. <Compile Include="IMqttNetworkChannel.cs" />
  38. <Compile Include="Internal\InternalEvent.cs" />
  39. <Compile Include="Internal\MsgInternalEvent.cs" />
  40. <Compile Include="Internal\MsgPublishedInternalEvent.cs" />
  41. <Compile Include="Messages\MqttMsgBase.cs" />
  42. <Compile Include="Messages\MqttMsgConnack.cs" />
  43. <Compile Include="Messages\MqttMsgConnect.cs" />
  44. <Compile Include="Messages\MqttMsgConnectEventArgs.cs" />
  45. <Compile Include="Messages\MqttMsgContext.cs" />
  46. <Compile Include="Messages\MqttMsgDisconnect.cs" />
  47. <Compile Include="Messages\MqttMsgPingReq.cs" />
  48. <Compile Include="Messages\MqttMsgPingResp.cs" />
  49. <Compile Include="Messages\MqttMsgPuback.cs" />
  50. <Compile Include="Messages\MqttMsgPubcomp.cs" />
  51. <Compile Include="Messages\MqttMsgPublish.cs" />
  52. <Compile Include="Messages\MqttMsgPublishedEventArgs.cs" />
  53. <Compile Include="Messages\MqttMsgPublishEventArgs.cs" />
  54. <Compile Include="Messages\MqttMsgPubrec.cs" />
  55. <Compile Include="Messages\MqttMsgPubrel.cs" />
  56. <Compile Include="Messages\MqttMsgSuback.cs" />
  57. <Compile Include="Messages\MqttMsgSubscribe.cs" />
  58. <Compile Include="Messages\MqttMsgSubscribedEventArgs.cs" />
  59. <Compile Include="Messages\MqttMsgSubscribeEventArgs.cs" />
  60. <Compile Include="Messages\MqttMsgUnsuback.cs" />
  61. <Compile Include="Messages\MqttMsgUnsubscribe.cs" />
  62. <Compile Include="Messages\MqttMsgUnsubscribedEventArgs.cs" />
  63. <Compile Include="Messages\MqttMsgUnsubscribeEventArgs.cs" />
  64. <Compile Include="MqttClient.cs" />
  65. <Compile Include="MqttSecurity.cs" />
  66. <Compile Include="Net\Fx.cs" />
  67. <Compile Include="Net\MqttNetworkChannel.cs" />
  68. <Compile Include="MqttSettings.cs" />
  69. <Compile Include="Properties\AssemblyInfo.cs" />
  70. <Compile Include="Session\MqttBrokerSession.cs" />
  71. <Compile Include="Session\MqttClientSession.cs" />
  72. <Compile Include="Session\MqttSession.cs" />
  73. <Compile Include="Utility\Trace.cs" />
  74. <Compile Include="Utility\QueueExtension.cs" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <Reference Include="Microsoft.SPOT.Native">
  78. </Reference>
  79. <Reference Include="Microsoft.SPOT.Net.Security" />
  80. <Reference Include="Microsoft.SPOT.Time" />
  81. <Reference Include="System" />
  82. <Reference Include="System.Net.Security" />
  83. </ItemGroup>
  84. </Project>