123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{C0A07E8F-37E4-4550-9D85-0073D494B6BA}</ProjectGuid>
- <OutputType>WinExe</OutputType>
- <RootNamespace>QVCopier</RootNamespace>
- <AssemblyName>QVCopier</AssemblyName>
- <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
- <Deterministic>true</Deterministic>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <LangVersion>latest</LangVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <LangVersion>latest</LangVersion>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="Crc32.NET, Version=1.0.0.0, Culture=neutral, PublicKeyToken=dc0b95cf99bf4e99, processorArchitecture=MSIL">
- <HintPath>C:\NuGetLocalRepo\Crc32.NET.1.2.0\lib\net20\Crc32.NET.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="System.Data" />
- <Reference Include="System.Deployment" />
- <Reference Include="System.Drawing" />
- <Reference Include="System.Net.Http" />
- <Reference Include="System.Windows.Forms" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="QvcMainForm.MainLV.cs">
- <DependentUpon>QvcMainForm.cs</DependentUpon>
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="Models\WorkItem.cs" />
- <Compile Include="Models\WorkItemDestPolicy.cs" />
- <Compile Include="Models\WorkItemStatus.cs" />
- <Compile Include="QvcMainForm.Logs.cs">
- <DependentUpon>QvcMainForm.cs</DependentUpon>
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="Models\LogEntry.cs" />
- <Compile Include="Models\LogLevel.cs" />
- <Compile Include="QvcMainForm.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="QvcMainForm.Designer.cs">
- <DependentUpon>QvcMainForm.cs</DependentUpon>
- </Compile>
- <Compile Include="Program.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Components\ProgressBarLabel\ProgressBarLabelControl.cs">
- <SubType>Component</SubType>
- </Compile>
- <Compile Include="Utility\ExplorerAccessor.cs" />
- <Compile Include="Utility\FindFile\FindFileApi.cs" />
- <Compile Include="Utility\FindFile\WIN32_FIND_DATA.cs" />
- <Compile Include="Utility\FindFile\FINDEX_INFO_LEVELS.cs" />
- <Compile Include="Utility\FindFile\FINDEX_SEARCH_OPS.cs" />
- <Compile Include="Utility\Logger.cs" />
- <Compile Include="Utility\RunningChecksum.cs" />
- <Compile Include="Utility\TextFormatter.cs" />
- <EmbeddedResource Include="QvcMainForm.resx">
- <DependentUpon>QvcMainForm.cs</DependentUpon>
- </EmbeddedResource>
- <None Include="Components\ProgressBarLabel\README.md" />
- <None Include="Components\ProgressBarLabel\README.original.md" />
- <None Include="packages.config" />
- <None Include="Readme.md" />
- </ItemGroup>
- <ItemGroup>
- <None Include="App.config" />
- </ItemGroup>
- <ItemGroup>
- <COMReference Include="SHDocVw">
- <Guid>{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}</Guid>
- <VersionMajor>1</VersionMajor>
- <VersionMinor>1</VersionMinor>
- <Lcid>0</Lcid>
- <WrapperTool>tlbimp</WrapperTool>
- <Isolated>False</Isolated>
- <EmbedInteropTypes>True</EmbedInteropTypes>
- </COMReference>
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Core\" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- </Project>
|