DirectoryDownload.csproj 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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>{C25491A1-4E3B-4F3D-A99D-217A0F2EE36D}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>DirectoryDownload</RootNamespace>
  10. <AssemblyName>DirectoryDownload</AssemblyName>
  11. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <PlatformTarget>AnyCPU</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  38. <SpecificVersion>False</SpecificVersion>
  39. <HintPath>..\..\..\..\ThirdDLL\Test\Newtonsoft.Json.dll</HintPath>
  40. </Reference>
  41. <Reference Include="SunnyUI, Version=3.1.5.0, Culture=neutral, PublicKeyToken=27d7d2e821d97aeb, processorArchitecture=MSIL">
  42. <HintPath>..\packages\SunnyUI.3.1.5\lib\net40\SunnyUI.dll</HintPath>
  43. </Reference>
  44. <Reference Include="SunnyUI.Common, Version=3.1.2.0, Culture=neutral, PublicKeyToken=5a271fb7ba597231, processorArchitecture=MSIL">
  45. <HintPath>..\packages\SunnyUI.Common.3.1.2\lib\net40\SunnyUI.Common.dll</HintPath>
  46. </Reference>
  47. <Reference Include="System" />
  48. <Reference Include="System.Core" />
  49. <Reference Include="System.Design" />
  50. <Reference Include="System.IO.Compression.FileSystem" />
  51. <Reference Include="System.Management" />
  52. <Reference Include="System.Web.Extensions" />
  53. <Reference Include="System.Xml.Linq" />
  54. <Reference Include="System.Data.DataSetExtensions" />
  55. <Reference Include="Microsoft.CSharp" />
  56. <Reference Include="System.Data" />
  57. <Reference Include="System.Deployment" />
  58. <Reference Include="System.Drawing" />
  59. <Reference Include="System.Net.Http" />
  60. <Reference Include="System.Windows.Forms" />
  61. <Reference Include="System.Xml" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Compile Include="Business\CenterBusiness.cs" />
  65. <Compile Include="Business\DataImoport.cs" />
  66. <Compile Include="Business\HisBusiness.cs" />
  67. <Compile Include="FormSetter\ComboxSetter.cs" />
  68. <Compile Include="FormSetter\DataTableSetter.cs" />
  69. <Compile Include="Helper\InvokeHelper.cs" />
  70. <Compile Include="Business\IrisInterfaceService.cs" />
  71. <Compile Include="Helper\JsonHelper.cs" />
  72. <Compile Include="FormSetter\GridViewSetter.cs" />
  73. <Compile Include="InvokeMethod.cs" />
  74. <Compile Include="Common.cs" />
  75. <Compile Include="Form1.cs">
  76. <SubType>Form</SubType>
  77. </Compile>
  78. <Compile Include="Form1.Designer.cs">
  79. <DependentUpon>Form1.cs</DependentUpon>
  80. </Compile>
  81. <Compile Include="Program.cs" />
  82. <Compile Include="Properties\AssemblyInfo.cs" />
  83. <EmbeddedResource Include="Form1.resx">
  84. <DependentUpon>Form1.cs</DependentUpon>
  85. </EmbeddedResource>
  86. <EmbeddedResource Include="Properties\Resources.resx">
  87. <Generator>ResXFileCodeGenerator</Generator>
  88. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  89. <SubType>Designer</SubType>
  90. </EmbeddedResource>
  91. <Compile Include="Properties\Resources.Designer.cs">
  92. <AutoGen>True</AutoGen>
  93. <DependentUpon>Resources.resx</DependentUpon>
  94. <DesignTime>True</DesignTime>
  95. </Compile>
  96. <None Include="packages.config" />
  97. <None Include="Properties\Settings.settings">
  98. <Generator>SettingsSingleFileGenerator</Generator>
  99. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  100. </None>
  101. <Compile Include="Properties\Settings.Designer.cs">
  102. <AutoGen>True</AutoGen>
  103. <DependentUpon>Settings.settings</DependentUpon>
  104. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  105. </Compile>
  106. </ItemGroup>
  107. <ItemGroup>
  108. <None Include="App.config" />
  109. </ItemGroup>
  110. <ItemGroup />
  111. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  112. </Project>