VidFilesUpgradeTool.csproj 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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>{FE53FE86-942E-4FC2-9B22-B7F1EEA677D9}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>VidFilesUpgradeTool</RootNamespace>
  10. <AssemblyName>VidFilesUpgradeTool</AssemblyName>
  11. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  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. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="MongoDB.Bson">
  37. <HintPath>..\packages\MongoDB.Bson.2.4.4\lib\net45\MongoDB.Bson.dll</HintPath>
  38. </Reference>
  39. <Reference Include="MongoDB.Driver">
  40. <HintPath>..\packages\MongoDB.Driver.2.4.4\lib\net45\MongoDB.Driver.dll</HintPath>
  41. </Reference>
  42. <Reference Include="MongoDB.Driver.Core">
  43. <HintPath>..\packages\MongoDB.Driver.Core.2.4.4\lib\net45\MongoDB.Driver.Core.dll</HintPath>
  44. </Reference>
  45. <Reference Include="System" />
  46. <Reference Include="System.Configuration" />
  47. <Reference Include="System.Core" />
  48. <Reference Include="System.Drawing" />
  49. <Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  50. <SpecificVersion>False</SpecificVersion>
  51. <HintPath>..\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
  52. </Reference>
  53. <Reference Include="System.Runtime.Serialization" />
  54. <Reference Include="System.Xml" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Compile Include="Admin.cs" />
  58. <Compile Include="Conversation.cs" />
  59. <Compile Include="DiagnosisPackage.cs" />
  60. <Compile Include="DiagnosisResult.cs" />
  61. <Compile Include="NewStorageFileInfo.cs" />
  62. <Compile Include="Program.cs" />
  63. <Compile Include="Properties\AssemblyInfo.cs" />
  64. <Compile Include="SQLite.cs" />
  65. <Compile Include="SQliteStorageFileInfoDictionary.cs" />
  66. <Compile Include="StorageFileInfo.cs" />
  67. <Compile Include="TerminalData.cs" />
  68. <Compile Include="TerminalRecord.cs" />
  69. <Compile Include="User.cs" />
  70. <Compile Include="VidUpgrader.cs" />
  71. <Compile Include="WorkOrder.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <None Include="App.config">
  75. <SubType>Designer</SubType>
  76. </None>
  77. </ItemGroup>
  78. <ItemGroup>
  79. <None Include="..\packages\sqlite3\sqlite3.x64.dll">
  80. <Link>sqlite3.x64.dll</Link>
  81. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  82. </None>
  83. <None Include="..\packages\sqlite3\sqlite3.x86.dll">
  84. <Link>sqlite3.x86.dll</Link>
  85. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  86. </None>
  87. </ItemGroup>
  88. <Import Project="..\Common\Vinno.vCloud.Common.Vid\Vinno.vCloud.Common.Vid.projitems" Label="Shared" />
  89. <Import Project="..\Common\Vinno.vCloud.Common.Vid2\Vinno.vCloud.Common.Vid2.projitems" Label="Shared" />
  90. <Import Project="..\Common\Vinno.IUS.Common.Shared\Vinno.IUS.Common.Shared.projitems" Label="Shared" />
  91. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  92. </Project>