93 lines
4.4 KiB
XML
93 lines
4.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>8.0.30703</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{A11AEF5A-B246-4FE8-8330-06DB73CC8074}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>uPLibrary.Networking.M2Mqtt</RootNamespace>
|
|
<AssemblyName>M2Mqtt</AssemblyName>
|
|
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<TargetFrameworkProfile />
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\4.7.1\</OutputPath>
|
|
<DefineConstants>TRACE;DEBUG;SSL</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\4.7.1\</OutputPath>
|
|
<DefineConstants>TRACE;SSL</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Xml" />
|
|
</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="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
<Target Name="BeforeBuild">
|
|
</Target>
|
|
<Target Name="AfterBuild">
|
|
</Target>
|
|
-->
|
|
</Project> |