Test.TcpClientApp.csproj 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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>{B251E246-9F9C-4AEC-9748-FBCFAD2381E1}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>Test.TcpClientApp</RootNamespace>
  10. <AssemblyName>Test.TcpClientApp</AssemblyName>
  11. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <TargetFrameworkProfile />
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  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. <Prefer32Bit>false</Prefer32Bit>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <Prefer32Bit>false</Prefer32Bit>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. <Reference Include="System.Xml.Linq" />
  40. <Reference Include="System.Data.DataSetExtensions" />
  41. <Reference Include="Microsoft.CSharp" />
  42. <Reference Include="System.Data" />
  43. <Reference Include="System.Deployment" />
  44. <Reference Include="System.Drawing" />
  45. <Reference Include="System.Windows.Forms" />
  46. <Reference Include="System.Xml" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <Compile Include="MainForm.cs">
  50. <SubType>Form</SubType>
  51. </Compile>
  52. <Compile Include="MainForm.Designer.cs">
  53. <DependentUpon>MainForm.cs</DependentUpon>
  54. </Compile>
  55. <Compile Include="Program.cs" />
  56. <Compile Include="Properties\AssemblyInfo.cs" />
  57. <EmbeddedResource Include="MainForm.resx">
  58. <DependentUpon>MainForm.cs</DependentUpon>
  59. </EmbeddedResource>
  60. <EmbeddedResource Include="Properties\Resources.resx">
  61. <Generator>ResXFileCodeGenerator</Generator>
  62. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  63. <SubType>Designer</SubType>
  64. </EmbeddedResource>
  65. <Compile Include="Properties\Resources.Designer.cs">
  66. <AutoGen>True</AutoGen>
  67. <DependentUpon>Resources.resx</DependentUpon>
  68. <DesignTime>True</DesignTime>
  69. </Compile>
  70. <None Include="app.config" />
  71. <None Include="Properties\Settings.settings">
  72. <Generator>SettingsSingleFileGenerator</Generator>
  73. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  74. </None>
  75. <Compile Include="Properties\Settings.Designer.cs">
  76. <AutoGen>True</AutoGen>
  77. <DependentUpon>Settings.settings</DependentUpon>
  78. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  79. </Compile>
  80. </ItemGroup>
  81. <ItemGroup>
  82. <ProjectReference Include="..\..\Azylee.Core\Azylee.Core.csproj">
  83. <Project>{88dc61fa-95f0-41b7-9d7d-ab0f3cbd169c}</Project>
  84. <Name>Azylee.Core</Name>
  85. </ProjectReference>
  86. <ProjectReference Include="..\..\Azylee.Jsons\Azylee.Jsons.csproj">
  87. <Project>{de3ab999-96d3-4a53-a9f2-7409138d0333}</Project>
  88. <Name>Azylee.Jsons</Name>
  89. </ProjectReference>
  90. <ProjectReference Include="..\..\Azylee.YeahWeb\Azylee.YeahWeb.csproj">
  91. <Project>{ccf7a654-b442-4db1-bb3b-0f8014c3237f}</Project>
  92. <Name>Azylee.YeahWeb</Name>
  93. </ProjectReference>
  94. </ItemGroup>
  95. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  96. </Project>