QVCopier.csproj 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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>{C0A07E8F-37E4-4550-9D85-0073D494B6BA}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>QVCopier</RootNamespace>
  10. <AssemblyName>QVCopier</AssemblyName>
  11. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <LangVersion>latest</LangVersion>
  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. <LangVersion>latest</LangVersion>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Xml.Linq" />
  41. <Reference Include="System.Data.DataSetExtensions" />
  42. <Reference Include="Microsoft.CSharp" />
  43. <Reference Include="System.Data" />
  44. <Reference Include="System.Deployment" />
  45. <Reference Include="System.Drawing" />
  46. <Reference Include="System.Net.Http" />
  47. <Reference Include="System.Windows.Forms" />
  48. <Reference Include="System.Xml" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="Components\TextProgressBar\TextProgressBarDisplayMode.cs" />
  52. <Compile Include="QvcMainForm.cs">
  53. <SubType>Form</SubType>
  54. </Compile>
  55. <Compile Include="QvcMainForm.Designer.cs">
  56. <DependentUpon>QvcMainForm.cs</DependentUpon>
  57. </Compile>
  58. <Compile Include="Program.cs" />
  59. <Compile Include="Properties\AssemblyInfo.cs" />
  60. <Compile Include="Components\TextProgressBar\TextProgressBarControl.cs">
  61. <SubType>Component</SubType>
  62. </Compile>
  63. <Compile Include="Utility\ExplorerAccessor.cs" />
  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. <EmbeddedResource Include="QvcMainForm.resx">
  74. <DependentUpon>QvcMainForm.cs</DependentUpon>
  75. </EmbeddedResource>
  76. <None Include="Components\TextProgressBar\README.md" />
  77. <None Include="Properties\Settings.settings">
  78. <Generator>SettingsSingleFileGenerator</Generator>
  79. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  80. </None>
  81. <Compile Include="Properties\Settings.Designer.cs">
  82. <AutoGen>True</AutoGen>
  83. <DependentUpon>Settings.settings</DependentUpon>
  84. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  85. </Compile>
  86. <None Include="Readme.md" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <None Include="App.config" />
  90. </ItemGroup>
  91. <ItemGroup>
  92. <COMReference Include="SHDocVw">
  93. <Guid>{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}</Guid>
  94. <VersionMajor>1</VersionMajor>
  95. <VersionMinor>1</VersionMinor>
  96. <Lcid>0</Lcid>
  97. <WrapperTool>tlbimp</WrapperTool>
  98. <Isolated>False</Isolated>
  99. <EmbedInteropTypes>True</EmbedInteropTypes>
  100. </COMReference>
  101. </ItemGroup>
  102. <ItemGroup />
  103. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  104. </Project>