TcpComm.vbproj 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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>
  7. </ProductVersion>
  8. <SchemaVersion>
  9. </SchemaVersion>
  10. <ProjectGuid>{4BF8DFBC-4F06-45F3-840F-7A638F422E09}</ProjectGuid>
  11. <OutputType>Library</OutputType>
  12. <RootNamespace>TcpComm</RootNamespace>
  13. <AssemblyName>TcpComm</AssemblyName>
  14. <FileAlignment>512</FileAlignment>
  15. <MyType>Windows</MyType>
  16. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <DefineDebug>true</DefineDebug>
  22. <DefineTrace>true</DefineTrace>
  23. <OutputPath>bin\Debug\</OutputPath>
  24. <DocumentationFile>TcpComm.xml</DocumentationFile>
  25. <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <DefineDebug>false</DefineDebug>
  30. <DefineTrace>true</DefineTrace>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DocumentationFile>TcpComm.xml</DocumentationFile>
  34. <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
  35. </PropertyGroup>
  36. <PropertyGroup>
  37. <OptionExplicit>On</OptionExplicit>
  38. </PropertyGroup>
  39. <PropertyGroup>
  40. <OptionCompare>Binary</OptionCompare>
  41. </PropertyGroup>
  42. <PropertyGroup>
  43. <OptionStrict>Off</OptionStrict>
  44. </PropertyGroup>
  45. <PropertyGroup>
  46. <OptionInfer>On</OptionInfer>
  47. </PropertyGroup>
  48. <ItemGroup>
  49. <Reference Include="System" />
  50. <Reference Include="System.Data" />
  51. <Reference Include="System.Xml" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Xml.Linq" />
  54. <Reference Include="System.Data.DataSetExtensions" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Import Include="Microsoft.VisualBasic" />
  58. <Import Include="System" />
  59. <Import Include="System.Collections" />
  60. <Import Include="System.Collections.Generic" />
  61. <Import Include="System.Data" />
  62. <Import Include="System.Diagnostics" />
  63. <Import Include="System.Linq" />
  64. <Import Include="System.Xml.Linq" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="AsyncUnbuffWriter.vb" />
  68. <Compile Include="CpuMonitor.vb" />
  69. <Compile Include="My Project\AssemblyInfo.vb" />
  70. <Compile Include="My Project\Application.Designer.vb">
  71. <AutoGen>True</AutoGen>
  72. <DependentUpon>Application.myapp</DependentUpon>
  73. </Compile>
  74. <Compile Include="My Project\Resources.Designer.vb">
  75. <AutoGen>True</AutoGen>
  76. <DesignTime>True</DesignTime>
  77. <DependentUpon>Resources.resx</DependentUpon>
  78. </Compile>
  79. <Compile Include="My Project\Settings.Designer.vb">
  80. <AutoGen>True</AutoGen>
  81. <DependentUpon>Settings.settings</DependentUpon>
  82. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  83. </Compile>
  84. <Compile Include="Client.vb" />
  85. <Compile Include="Server.vb" />
  86. <Compile Include="Utilities.vb" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <EmbeddedResource Include="My Project\Resources.resx">
  90. <Generator>VbMyResourcesResXFileCodeGenerator</Generator>
  91. <LastGenOutput>Resources.Designer.vb</LastGenOutput>
  92. <CustomToolNamespace>My.Resources</CustomToolNamespace>
  93. <SubType>Designer</SubType>
  94. </EmbeddedResource>
  95. </ItemGroup>
  96. <ItemGroup>
  97. <None Include="My Project\Application.myapp">
  98. <Generator>MyApplicationCodeGenerator</Generator>
  99. <LastGenOutput>Application.Designer.vb</LastGenOutput>
  100. </None>
  101. <None Include="My Project\Settings.settings">
  102. <Generator>SettingsSingleFileGenerator</Generator>
  103. <CustomToolNamespace>My</CustomToolNamespace>
  104. <LastGenOutput>Settings.Designer.vb</LastGenOutput>
  105. </None>
  106. </ItemGroup>
  107. <Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
  108. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  109. Other similar extension points exist, see Microsoft.Common.targets.
  110. <Target Name="BeforeBuild">
  111. </Target>
  112. <Target Name="AfterBuild">
  113. </Target>
  114. -->
  115. </Project>