71 lines
3.3 KiB
XML
71 lines
3.3 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
<PropertyGroup>
|
||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||
|
<ProductVersion>10.0.0</ProductVersion>
|
||
|
<SchemaVersion>2.0</SchemaVersion>
|
||
|
<ProjectGuid>{9B706DEC-4CE7-4764-BDBE-8A5F855E5857}</ProjectGuid>
|
||
|
<OutputType>Library</OutputType>
|
||
|
<RootNamespace>uPLibrary.Networking.M2Mqtt</RootNamespace>
|
||
|
<AssemblyName>M2Mqtt</AssemblyName>
|
||
|
</PropertyGroup>
|
||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||
|
<DebugSymbols>true</DebugSymbols>
|
||
|
<DebugType>full</DebugType>
|
||
|
<Optimize>false</Optimize>
|
||
|
<OutputPath>bin\Debug\Mono</OutputPath>
|
||
|
<DefineConstants>DEBUG;SSL</DefineConstants>
|
||
|
<ErrorReport>prompt</ErrorReport>
|
||
|
<WarningLevel>4</WarningLevel>
|
||
|
<ConsolePause>false</ConsolePause>
|
||
|
</PropertyGroup>
|
||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||
|
<DebugType>none</DebugType>
|
||
|
<Optimize>false</Optimize>
|
||
|
<OutputPath>bin\Release\Mono</OutputPath>
|
||
|
<ErrorReport>prompt</ErrorReport>
|
||
|
<WarningLevel>4</WarningLevel>
|
||
|
<ConsolePause>false</ConsolePause>
|
||
|
<DefineConstants>SSL</DefineConstants>
|
||
|
</PropertyGroup>
|
||
|
<ItemGroup>
|
||
|
<Reference Include="System" />
|
||
|
</ItemGroup>
|
||
|
<ItemGroup>
|
||
|
<Compile Include="Exceptions\MqttClientException.cs" />
|
||
|
<Compile Include="Exceptions\MqttCommunicationException.cs" />
|
||
|
<Compile Include="Exceptions\MqttConnectionException.cs" />
|
||
|
<Compile Include="Exceptions\MqttTimeoutException.cs" />
|
||
|
<Compile Include="Messages\MqttMsgBase.cs" />
|
||
|
<Compile Include="Messages\MqttMsgConnack.cs" />
|
||
|
<Compile Include="Messages\MqttMsgConnect.cs" />
|
||
|
<Compile Include="Messages\MqttMsgConnectEventArgs.cs" />
|
||
|
<Compile Include="Messages\MqttMsgContext.cs" />
|
||
|
<Compile Include="Messages\MqttMsgDisconnect.cs" />
|
||
|
<Compile Include="Messages\MqttMsgPingReq.cs" />
|
||
|
<Compile Include="Messages\MqttMsgPingResp.cs" />
|
||
|
<Compile Include="Messages\MqttMsgPuback.cs" />
|
||
|
<Compile Include="Messages\MqttMsgPubcomp.cs" />
|
||
|
<Compile Include="Messages\MqttMsgPublish.cs" />
|
||
|
<Compile Include="Messages\MqttMsgPublishEventArgs.cs" />
|
||
|
<Compile Include="Messages\MqttMsgPublishedEventArgs.cs" />
|
||
|
<Compile Include="Messages\MqttMsgPubrec.cs" />
|
||
|
<Compile Include="Messages\MqttMsgPubrel.cs" />
|
||
|
<Compile Include="Messages\MqttMsgSuback.cs" />
|
||
|
<Compile Include="Messages\MqttMsgSubscribe.cs" />
|
||
|
<Compile Include="Messages\MqttMsgSubscribedEventArgs.cs" />
|
||
|
<Compile Include="Messages\MqttMsgSubscribeEventArgs.cs" />
|
||
|
<Compile Include="Messages\MqttMsgUnsuback.cs" />
|
||
|
<Compile Include="Messages\MqttMsgUnsubscribe.cs" />
|
||
|
<Compile Include="Messages\MqttMsgUnsubscribedEventArgs.cs" />
|
||
|
<Compile Include="Messages\MqttMsgUnsubscribeEventArgs.cs" />
|
||
|
<Compile Include="MqttClient.cs" />
|
||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||
|
<Compile Include="MqttNetworkChannel.cs" />
|
||
|
<Compile Include="MqttSettings.cs" />
|
||
|
<Compile Include="Utility\QueueExtension.cs" />
|
||
|
<Compile Include="IMqttNetworkChannel.cs" />
|
||
|
</ItemGroup>
|
||
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||
|
</Project>
|