You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MQTTnet.Core.Tests.csproj 5.1 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{A7FF0C91-25DE-4BA6-B39E-F54E8DADF1CC}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MQTTnet.Core.Tests</RootNamespace>
  11. <AssemblyName>MQTTnet.Core.Tests</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  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>DEBUG;TRACE</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</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Any CPU|AnyCPU'">
  34. <OutputPath>bin\Any CPU\</OutputPath>
  35. <DefineConstants>TRACE</DefineConstants>
  36. <Optimize>true</Optimize>
  37. <DebugType>pdbonly</DebugType>
  38. <PlatformTarget>AnyCPU</PlatformTarget>
  39. <ErrorReport>prompt</ErrorReport>
  40. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  43. <DebugSymbols>true</DebugSymbols>
  44. <OutputPath>bin\x64\Debug\</OutputPath>
  45. <DefineConstants>DEBUG;TRACE</DefineConstants>
  46. <DebugType>full</DebugType>
  47. <PlatformTarget>x64</PlatformTarget>
  48. <ErrorReport>prompt</ErrorReport>
  49. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  50. </PropertyGroup>
  51. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  52. <OutputPath>bin\x64\Release\</OutputPath>
  53. <DefineConstants>TRACE</DefineConstants>
  54. <Optimize>true</Optimize>
  55. <DebugType>pdbonly</DebugType>
  56. <PlatformTarget>x64</PlatformTarget>
  57. <ErrorReport>prompt</ErrorReport>
  58. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  59. </PropertyGroup>
  60. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Any CPU|x64'">
  61. <OutputPath>bin\x64\Any CPU\</OutputPath>
  62. <DefineConstants>TRACE</DefineConstants>
  63. <Optimize>true</Optimize>
  64. <DebugType>pdbonly</DebugType>
  65. <PlatformTarget>x64</PlatformTarget>
  66. <ErrorReport>prompt</ErrorReport>
  67. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  68. </PropertyGroup>
  69. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  70. <PlatformTarget>x86</PlatformTarget>
  71. <OutputPath>bin\x86\Debug\</OutputPath>
  72. </PropertyGroup>
  73. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  74. <PlatformTarget>x86</PlatformTarget>
  75. <OutputPath>bin\x86\Release\</OutputPath>
  76. </PropertyGroup>
  77. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Any CPU|x86'">
  78. <PlatformTarget>x86</PlatformTarget>
  79. <OutputPath>bin\x86\Any CPU\</OutputPath>
  80. </PropertyGroup>
  81. <ItemGroup>
  82. <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
  83. <Reference Include="System" />
  84. <Reference Include="System.Core" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <Compile Include="ByteReaderTests.cs" />
  88. <Compile Include="ByteWriterTests.cs" />
  89. <Compile Include="MqttPacketSerializerTests.cs" />
  90. <Compile Include="MqttServerTests.cs" />
  91. <Compile Include="MqttSubscriptionsManagerTests.cs" />
  92. <Compile Include="Properties\AssemblyInfo.cs" />
  93. <Compile Include="TestMqttCommunicationAdapter.cs" />
  94. <Compile Include="TestMqttServerAdapter.cs" />
  95. <Compile Include="TopicFilterComparerTests.cs" />
  96. </ItemGroup>
  97. <ItemGroup>
  98. <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
  99. </ItemGroup>
  100. <ItemGroup>
  101. <ProjectReference Include="..\..\MQTTnet.Core\MQTTnet.Core.csproj">
  102. <Project>{2ecb99e4-72d0-4c23-99ba-93d511d3967d}</Project>
  103. <Name>MQTTnet.Core</Name>
  104. </ProjectReference>
  105. </ItemGroup>
  106. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  107. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  108. Other similar extension points exist, see Microsoft.Common.targets.
  109. <Target Name="BeforeBuild">
  110. </Target>
  111. <Target Name="AfterBuild">
  112. </Target>
  113. -->
  114. </Project>