1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?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.Mono</AssemblyName>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\bin\Debug\M2Mqtt.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\M2Mqtt.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="IMqttNetworkChannel.cs" />
- <Compile Include="Internal\InternalEvent.cs" />
- <Compile Include="Internal\MsgInternalEvent.cs" />
- <Compile Include="Internal\MsgPublishedInternalEvent.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\MqttMsgPublishedEventArgs.cs" />
- <Compile Include="Messages\MqttMsgPublishEventArgs.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="MqttSecurity.cs" />
- <Compile Include="Net\Fx.cs" />
- <Compile Include="Net\MqttNetworkChannel.cs" />
- <Compile Include="MqttSettings.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Session\MqttBrokerSession.cs" />
- <Compile Include="Session\MqttClientSession.cs" />
- <Compile Include="Session\MqttSession.cs" />
- <Compile Include="Utility\Trace.cs" />
- <Compile Include="Utility\QueueExtension.cs" />
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- </Project>
|