MqttClientCSharp.csproj 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" 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>{C339F0BD-441C-4E22-9CFE-2374A1F78F62}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>MqttClientDemo</RootNamespace>
  10. <AssemblyName>MqttClientDemo</AssemblyName>
  11. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. <PublishUrl>publish\</PublishUrl>
  16. <Install>true</Install>
  17. <InstallFrom>Disk</InstallFrom>
  18. <UpdateEnabled>false</UpdateEnabled>
  19. <UpdateMode>Foreground</UpdateMode>
  20. <UpdateInterval>7</UpdateInterval>
  21. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  22. <UpdatePeriodically>false</UpdatePeriodically>
  23. <UpdateRequired>false</UpdateRequired>
  24. <MapFileExtensions>true</MapFileExtensions>
  25. <ApplicationRevision>0</ApplicationRevision>
  26. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  27. <IsWebBootstrapper>false</IsWebBootstrapper>
  28. <UseApplicationTrust>false</UseApplicationTrust>
  29. <BootstrapperEnabled>true</BootstrapperEnabled>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  32. <PlatformTarget>x64</PlatformTarget>
  33. <DebugSymbols>true</DebugSymbols>
  34. <DebugType>full</DebugType>
  35. <Optimize>false</Optimize>
  36. <OutputPath>bin\Debug\</OutputPath>
  37. <DefineConstants>DEBUG;TRACE</DefineConstants>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. <Prefer32Bit>false</Prefer32Bit>
  41. </PropertyGroup>
  42. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  43. <PlatformTarget>AnyCPU</PlatformTarget>
  44. <DebugType>pdbonly</DebugType>
  45. <Optimize>true</Optimize>
  46. <OutputPath>bin\Release\</OutputPath>
  47. <DefineConstants>TRACE</DefineConstants>
  48. <ErrorReport>prompt</ErrorReport>
  49. <WarningLevel>4</WarningLevel>
  50. </PropertyGroup>
  51. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  52. <DebugSymbols>true</DebugSymbols>
  53. <OutputPath>bin\x64\Debug\</OutputPath>
  54. <DefineConstants>DEBUG;TRACE</DefineConstants>
  55. <DebugType>full</DebugType>
  56. <PlatformTarget>x64</PlatformTarget>
  57. <LangVersion>7.3</LangVersion>
  58. <ErrorReport>prompt</ErrorReport>
  59. </PropertyGroup>
  60. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  61. <OutputPath>bin\x64\Release\</OutputPath>
  62. <DefineConstants>TRACE</DefineConstants>
  63. <Optimize>true</Optimize>
  64. <DebugType>pdbonly</DebugType>
  65. <PlatformTarget>x64</PlatformTarget>
  66. <LangVersion>7.3</LangVersion>
  67. <ErrorReport>prompt</ErrorReport>
  68. <Prefer32Bit>true</Prefer32Bit>
  69. </PropertyGroup>
  70. <ItemGroup>
  71. <Reference Include="System" />
  72. <Reference Include="System.Core" />
  73. <Reference Include="System.Xml.Linq" />
  74. <Reference Include="System.Data.DataSetExtensions" />
  75. <Reference Include="Microsoft.CSharp" />
  76. <Reference Include="System.Data" />
  77. <Reference Include="System.Net.Http" />
  78. <Reference Include="System.Xml" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <Compile Include="Program.cs" />
  82. <Compile Include="Properties\AssemblyInfo.cs" />
  83. </ItemGroup>
  84. <ItemGroup>
  85. <None Include="App.config" />
  86. </ItemGroup>
  87. <ItemGroup>
  88. <BootstrapperPackage Include=".NETFramework,Version=v4.6.1">
  89. <Visible>False</Visible>
  90. <ProductName>Microsoft .NET Framework 4.6.1 %28x86 和 x64%29</ProductName>
  91. <Install>true</Install>
  92. </BootstrapperPackage>
  93. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  94. <Visible>False</Visible>
  95. <ProductName>.NET Framework 3.5 SP1</ProductName>
  96. <Install>false</Install>
  97. </BootstrapperPackage>
  98. </ItemGroup>
  99. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  100. <PropertyGroup>
  101. <PostBuildEvent>copy $(ProjectDir)$(OutDir)$(TargetFileName) "C:\Program Files (x86)\MIAutomation\CompileDllx64\ThirdPartyAll\ThingsMode" /y
  102. copy $(ProjectDir)$(OutDir)$(TargetName).pdb "C:\Program Files (x86)\MIAutomation\CompileDllx64\ThirdPartyAll\ThingsMode" /y</PostBuildEvent>
  103. </PropertyGroup>
  104. </Project>