UpdateDataTool.csproj 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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>{B9DB2EF4-B994-4EF3-9037-B88EC92D6BCA}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>UpdateDataTool</RootNamespace>
  10. <AssemblyName>UpdateDataTool</AssemblyName>
  11. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <WarningLevel>4</WarningLevel>
  15. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  16. <TargetFrameworkProfile />
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <PlatformTarget>AnyCPU</PlatformTarget>
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>..\Bin\UpdateDataTool\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <PlatformTarget>AnyCPU</PlatformTarget>
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>..\Bin\UpdateDataTool\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="MongoDB.Bson, Version=2.4.4.0, Culture=neutral, processorArchitecture=MSIL">
  39. <SpecificVersion>False</SpecificVersion>
  40. <HintPath>..\packages\MongoDB.Bson.2.4.4\lib\net45\MongoDB.Bson.dll</HintPath>
  41. </Reference>
  42. <Reference Include="MongoDB.Driver, Version=2.4.4.0, Culture=neutral, processorArchitecture=MSIL">
  43. <SpecificVersion>False</SpecificVersion>
  44. <HintPath>..\packages\MongoDB.Driver.2.4.4\lib\net45\MongoDB.Driver.dll</HintPath>
  45. </Reference>
  46. <Reference Include="MongoDB.Driver.Core, Version=2.4.4.0, Culture=neutral, processorArchitecture=MSIL">
  47. <SpecificVersion>False</SpecificVersion>
  48. <HintPath>..\packages\MongoDB.Driver.Core.2.4.4\lib\net45\MongoDB.Driver.Core.dll</HintPath>
  49. </Reference>
  50. <Reference Include="System" />
  51. <Reference Include="System.Data" />
  52. <Reference Include="System.Drawing" />
  53. <Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  54. <SpecificVersion>False</SpecificVersion>
  55. <HintPath>..\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
  56. </Reference>
  57. <Reference Include="System.Runtime.Serialization" />
  58. <Reference Include="System.Xml" />
  59. <Reference Include="Microsoft.CSharp" />
  60. <Reference Include="System.Core" />
  61. <Reference Include="System.Xml.Linq" />
  62. <Reference Include="System.Data.DataSetExtensions" />
  63. <Reference Include="System.Net.Http" />
  64. <Reference Include="System.Xaml">
  65. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  66. </Reference>
  67. <Reference Include="WindowsBase" />
  68. <Reference Include="PresentationCore" />
  69. <Reference Include="PresentationFramework" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <ApplicationDefinition Include="App.xaml">
  73. <Generator>MSBuild:Compile</Generator>
  74. <SubType>Designer</SubType>
  75. </ApplicationDefinition>
  76. <Compile Include="BoolInvertConverter.cs" />
  77. <Compile Include="DbCopyHelper.cs" />
  78. <Compile Include="IMainDispatcher.cs" />
  79. <Compile Include="MainDispatcher.cs" />
  80. <Compile Include="MainPageViewModel.cs" />
  81. <Compile Include="Models\Admin.cs" />
  82. <Compile Include="Models\Conversation.cs" />
  83. <Compile Include="Models\CountryInfo.cs" />
  84. <Compile Include="Models\DiagnosisPackage.cs" />
  85. <Compile Include="Models\DiagnosisResult.cs" />
  86. <Compile Include="Models\Feature.cs" />
  87. <Compile Include="Models\NewStorageFileInfo.cs" />
  88. <Compile Include="Models\Organization.cs" />
  89. <Compile Include="Models\Patient.cs" />
  90. <Compile Include="Models\StorageFileInfo.cs" />
  91. <Compile Include="Models\Terminal.cs" />
  92. <Compile Include="RelayCommand.cs" />
  93. <Compile Include="SQLite.cs" />
  94. <Compile Include="SQliteStorageFileInfoDictionary.cs" />
  95. <Compile Include="VidUpgrader.cs" />
  96. <Page Include="MainWindow.xaml">
  97. <Generator>MSBuild:Compile</Generator>
  98. <SubType>Designer</SubType>
  99. </Page>
  100. <Compile Include="App.xaml.cs">
  101. <DependentUpon>App.xaml</DependentUpon>
  102. <SubType>Code</SubType>
  103. </Compile>
  104. <Compile Include="MainWindow.xaml.cs">
  105. <DependentUpon>MainWindow.xaml</DependentUpon>
  106. <SubType>Code</SubType>
  107. </Compile>
  108. </ItemGroup>
  109. <ItemGroup>
  110. <Compile Include="Models\Entity.cs" />
  111. <Compile Include="Models\TerminalData.cs" />
  112. <Compile Include="Models\TerminalRecord.cs" />
  113. <Compile Include="Models\Users.cs" />
  114. <Compile Include="Models\WorkOrder.cs" />
  115. <Compile Include="Properties\AssemblyInfo.cs">
  116. <SubType>Code</SubType>
  117. </Compile>
  118. <Compile Include="Properties\Resources.Designer.cs">
  119. <AutoGen>True</AutoGen>
  120. <DesignTime>True</DesignTime>
  121. <DependentUpon>Resources.resx</DependentUpon>
  122. </Compile>
  123. <Compile Include="Properties\Settings.Designer.cs">
  124. <AutoGen>True</AutoGen>
  125. <DependentUpon>Settings.settings</DependentUpon>
  126. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  127. </Compile>
  128. <EmbeddedResource Include="Properties\Resources.resx">
  129. <Generator>ResXFileCodeGenerator</Generator>
  130. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  131. </EmbeddedResource>
  132. <None Include="Properties\Settings.settings">
  133. <Generator>SettingsSingleFileGenerator</Generator>
  134. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  135. </None>
  136. </ItemGroup>
  137. <ItemGroup>
  138. <None Include="App.config" />
  139. </ItemGroup>
  140. <ItemGroup>
  141. <Analyzer Include="..\packages\MongoDB.Bson.2.4.4\lib\netstandard1.5\MongoDB.Bson.dll" />
  142. <Analyzer Include="..\packages\MongoDB.Driver.2.4.4\lib\netstandard1.5\MongoDB.Driver.dll" />
  143. <Analyzer Include="..\packages\MongoDB.Driver.Core.2.4.4\lib\netstandard1.5\MongoDB.Driver.Core.dll" />
  144. </ItemGroup>
  145. <ItemGroup>
  146. <None Include="..\packages\sqlite3\sqlite3.x64.dll">
  147. <Link>sqlite3.x64.dll</Link>
  148. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  149. </None>
  150. <None Include="..\packages\sqlite3\sqlite3.x86.dll">
  151. <Link>sqlite3.x86.dll</Link>
  152. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  153. </None>
  154. </ItemGroup>
  155. <ItemGroup />
  156. <Import Project="..\Common\Vinno.vCloud.Common.Vid\Vinno.vCloud.Common.Vid.projitems" Label="Shared" />
  157. <Import Project="..\Common\Vinno.vCloud.Common.Vid2\Vinno.vCloud.Common.Vid2.projitems" Label="Shared" />
  158. <Import Project="..\Common\Vinno.IUS.Common.Shared\Vinno.IUS.Common.Shared.projitems" Label="Shared" />
  159. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  160. </Project>