Test.HttpTool.csproj 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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>{8ED17932-7365-42DE-BE9B-ECF2B17155EC}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>Test.HttpTool</RootNamespace>
  10. <AssemblyName>Test.HttpTool</AssemblyName>
  11. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <PlatformTarget>AnyCPU</PlatformTarget>
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <PlatformTarget>AnyCPU</PlatformTarget>
  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. <ItemGroup>
  34. <Reference Include="EasyHttp, Version=1.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  35. <HintPath>..\..\packages\EasyHttp.1.7.0\lib\net40\EasyHttp.dll</HintPath>
  36. </Reference>
  37. <Reference Include="JsonFx, Version=2.0.1209.2802, Culture=neutral, PublicKeyToken=315052dd637f8a52, processorArchitecture=MSIL">
  38. <HintPath>..\..\packages\JsonFx.2.0.1209.2802\lib\net40\JsonFx.dll</HintPath>
  39. </Reference>
  40. <Reference Include="System" />
  41. <Reference Include="System.Core" />
  42. <Reference Include="System.Xml.Linq" />
  43. <Reference Include="System.Data.DataSetExtensions" />
  44. <Reference Include="Microsoft.CSharp" />
  45. <Reference Include="System.Data" />
  46. <Reference Include="System.Deployment" />
  47. <Reference Include="System.Drawing" />
  48. <Reference Include="System.Windows.Forms" />
  49. <Reference Include="System.Xml" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Compile Include="Form1.cs">
  53. <SubType>Form</SubType>
  54. </Compile>
  55. <Compile Include="Form1.Designer.cs">
  56. <DependentUpon>Form1.cs</DependentUpon>
  57. </Compile>
  58. <Compile Include="Models\UserModel.cs" />
  59. <Compile Include="Program.cs" />
  60. <Compile Include="Properties\AssemblyInfo.cs" />
  61. <EmbeddedResource Include="Form1.resx">
  62. <DependentUpon>Form1.cs</DependentUpon>
  63. </EmbeddedResource>
  64. <EmbeddedResource Include="Properties\Resources.resx">
  65. <Generator>ResXFileCodeGenerator</Generator>
  66. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  67. <SubType>Designer</SubType>
  68. </EmbeddedResource>
  69. <Compile Include="Properties\Resources.Designer.cs">
  70. <AutoGen>True</AutoGen>
  71. <DependentUpon>Resources.resx</DependentUpon>
  72. </Compile>
  73. <None Include="packages.config" />
  74. <None Include="Properties\Settings.settings">
  75. <Generator>SettingsSingleFileGenerator</Generator>
  76. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  77. </None>
  78. <Compile Include="Properties\Settings.Designer.cs">
  79. <AutoGen>True</AutoGen>
  80. <DependentUpon>Settings.settings</DependentUpon>
  81. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  82. </Compile>
  83. </ItemGroup>
  84. <ItemGroup>
  85. <ProjectReference Include="..\..\Azylee.Utils\Azylee.Core.Plus\Azylee.Core.Plus.csproj">
  86. <Project>{915ae524-7efd-4ecc-b731-de1d1f5558f0}</Project>
  87. <Name>Azylee.Core.Plus</Name>
  88. </ProjectReference>
  89. <ProjectReference Include="..\..\Azylee.Utils\Azylee.YeahWeb\Azylee.YeahWeb.csproj">
  90. <Project>{ccf7a654-b442-4db1-bb3b-0f8014c3237f}</Project>
  91. <Name>Azylee.YeahWeb</Name>
  92. </ProjectReference>
  93. </ItemGroup>
  94. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  95. </Project>