TcpCommExampleProject.vbproj 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{CEC31898-193E-4BB7-8B89-AF1084125481}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <StartupObject>WindowsApplication1.My.MyApplication</StartupObject>
  11. <RootNamespace>WindowsApplication1</RootNamespace>
  12. <AssemblyName>TcpCommExampleProject</AssemblyName>
  13. <FileAlignment>512</FileAlignment>
  14. <MyType>WindowsForms</MyType>
  15. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  16. <OptionExplicit>On</OptionExplicit>
  17. <OptionCompare>Binary</OptionCompare>
  18. <OptionStrict>On</OptionStrict>
  19. <OptionInfer>On</OptionInfer>
  20. <IsWebBootstrapper>false</IsWebBootstrapper>
  21. <FileUpgradeFlags>
  22. </FileUpgradeFlags>
  23. <OldToolsVersion>3.5</OldToolsVersion>
  24. <UpgradeBackupLocation />
  25. <PublishUrl>publish\</PublishUrl>
  26. <Install>true</Install>
  27. <InstallFrom>Disk</InstallFrom>
  28. <UpdateEnabled>false</UpdateEnabled>
  29. <UpdateMode>Foreground</UpdateMode>
  30. <UpdateInterval>7</UpdateInterval>
  31. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  32. <UpdatePeriodically>false</UpdatePeriodically>
  33. <UpdateRequired>false</UpdateRequired>
  34. <MapFileExtensions>true</MapFileExtensions>
  35. <ApplicationRevision>0</ApplicationRevision>
  36. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  37. <UseApplicationTrust>false</UseApplicationTrust>
  38. <BootstrapperEnabled>true</BootstrapperEnabled>
  39. <TargetFrameworkProfile />
  40. </PropertyGroup>
  41. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  42. <DebugSymbols>true</DebugSymbols>
  43. <DebugType>full</DebugType>
  44. <DefineDebug>true</DefineDebug>
  45. <DefineTrace>true</DefineTrace>
  46. <OutputPath>bin\Debug\</OutputPath>
  47. <DocumentationFile>TcpCommExampleProject.xml</DocumentationFile>
  48. <NoWarn>42353,42354,42355</NoWarn>
  49. <WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
  50. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  51. </PropertyGroup>
  52. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  53. <DebugType>None</DebugType>
  54. <DefineDebug>false</DefineDebug>
  55. <DefineTrace>true</DefineTrace>
  56. <Optimize>true</Optimize>
  57. <OutputPath>bin\Release\</OutputPath>
  58. <DocumentationFile>TcpCommExampleProject.xml</DocumentationFile>
  59. <NoWarn>42353,42354,42355</NoWarn>
  60. <WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
  61. <RemoveIntegerChecks>true</RemoveIntegerChecks>
  62. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  63. </PropertyGroup>
  64. <ItemGroup>
  65. <Reference Include="System" />
  66. <Reference Include="System.Data" />
  67. <Reference Include="System.Deployment" />
  68. <Reference Include="System.Drawing" />
  69. <Reference Include="System.ServiceProcess" />
  70. <Reference Include="System.Windows.Forms" />
  71. <Reference Include="System.Xml" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <Import Include="Microsoft.VisualBasic" />
  75. <Import Include="System" />
  76. <Import Include="System.Collections" />
  77. <Import Include="System.Collections.Generic" />
  78. <Import Include="System.Data" />
  79. <Import Include="System.Drawing" />
  80. <Import Include="System.Diagnostics" />
  81. <Import Include="System.Windows.Forms" />
  82. </ItemGroup>
  83. <ItemGroup>
  84. <Compile Include="ApplicationEvents.vb" />
  85. <Compile Include="frmClient.Designer.vb">
  86. <DependentUpon>frmClient.vb</DependentUpon>
  87. </Compile>
  88. <Compile Include="frmClient.vb">
  89. <SubType>Form</SubType>
  90. </Compile>
  91. <Compile Include="frmLatViewer.Designer.vb">
  92. <DependentUpon>frmLatViewer.vb</DependentUpon>
  93. </Compile>
  94. <Compile Include="frmLatViewer.vb">
  95. <SubType>Form</SubType>
  96. </Compile>
  97. <Compile Include="frmServer.vb">
  98. <SubType>Form</SubType>
  99. </Compile>
  100. <Compile Include="frmServer.Designer.vb">
  101. <DependentUpon>frmServer.vb</DependentUpon>
  102. <SubType>Form</SubType>
  103. </Compile>
  104. <Compile Include="My Project\AssemblyInfo.vb" />
  105. <Compile Include="My Project\Application.Designer.vb">
  106. <AutoGen>True</AutoGen>
  107. <DependentUpon>Application.myapp</DependentUpon>
  108. </Compile>
  109. <Compile Include="My Project\Resources.Designer.vb">
  110. <AutoGen>True</AutoGen>
  111. <DesignTime>True</DesignTime>
  112. <DependentUpon>Resources.resx</DependentUpon>
  113. </Compile>
  114. <Compile Include="My Project\Settings.Designer.vb">
  115. <AutoGen>True</AutoGen>
  116. <DependentUpon>Settings.settings</DependentUpon>
  117. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  118. </Compile>
  119. </ItemGroup>
  120. <ItemGroup>
  121. <EmbeddedResource Include="frmClient.resx">
  122. <DependentUpon>frmClient.vb</DependentUpon>
  123. <SubType>Designer</SubType>
  124. </EmbeddedResource>
  125. <EmbeddedResource Include="frmLatViewer.resx">
  126. <DependentUpon>frmLatViewer.vb</DependentUpon>
  127. </EmbeddedResource>
  128. <EmbeddedResource Include="frmServer.resx">
  129. <DependentUpon>frmServer.vb</DependentUpon>
  130. <SubType>Designer</SubType>
  131. </EmbeddedResource>
  132. <EmbeddedResource Include="My Project\Resources.resx">
  133. <Generator>VbMyResourcesResXFileCodeGenerator</Generator>
  134. <LastGenOutput>Resources.Designer.vb</LastGenOutput>
  135. <CustomToolNamespace>My.Resources</CustomToolNamespace>
  136. <SubType>Designer</SubType>
  137. </EmbeddedResource>
  138. </ItemGroup>
  139. <ItemGroup>
  140. <None Include="app.config" />
  141. <None Include="My Project\Application.myapp">
  142. <Generator>MyApplicationCodeGenerator</Generator>
  143. <LastGenOutput>Application.Designer.vb</LastGenOutput>
  144. </None>
  145. <None Include="My Project\Settings.settings">
  146. <Generator>SettingsSingleFileGenerator</Generator>
  147. <CustomToolNamespace>My</CustomToolNamespace>
  148. <LastGenOutput>Settings.Designer.vb</LastGenOutput>
  149. </None>
  150. </ItemGroup>
  151. <ItemGroup>
  152. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  153. <Visible>False</Visible>
  154. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  155. <Install>false</Install>
  156. </BootstrapperPackage>
  157. <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
  158. <Visible>False</Visible>
  159. <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
  160. <Install>true</Install>
  161. </BootstrapperPackage>
  162. <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
  163. <Visible>False</Visible>
  164. <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
  165. <Install>false</Install>
  166. </BootstrapperPackage>
  167. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
  168. <Visible>False</Visible>
  169. <ProductName>.NET Framework 3.5</ProductName>
  170. <Install>false</Install>
  171. </BootstrapperPackage>
  172. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  173. <Visible>False</Visible>
  174. <ProductName>.NET Framework 3.5 SP1</ProductName>
  175. <Install>false</Install>
  176. </BootstrapperPackage>
  177. </ItemGroup>
  178. <ItemGroup>
  179. <ProjectReference Include="..\TcpComm\TcpComm.vbproj">
  180. <Project>{4BF8DFBC-4F06-45F3-840F-7A638F422E09}</Project>
  181. <Name>TcpComm</Name>
  182. </ProjectReference>
  183. </ItemGroup>
  184. <Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
  185. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  186. Other similar extension points exist, see Microsoft.Common.targets.
  187. <Target Name="BeforeBuild">
  188. </Target>
  189. <Target Name="AfterBuild">
  190. </Target>
  191. -->
  192. </Project>