VirtualizationTest.csproj 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" 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>{FBCAF3D0-2808-4934-8E96-3F607594517B}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>VirtualizationTest</RootNamespace>
  11. <AssemblyName>VirtualizationTest</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  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. </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. <PropertyGroup>
  36. <StartupObject />
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="Serilog, Version=1.5.0.0, Culture=neutral, PublicKeyToken=24c2f752a8e58a10, processorArchitecture=MSIL">
  40. <HintPath>..\..\packages\Serilog.1.5.14\lib\net45\Serilog.dll</HintPath>
  41. <Private>True</Private>
  42. </Reference>
  43. <Reference Include="Serilog.FullNetFx, Version=1.5.0.0, Culture=neutral, PublicKeyToken=24c2f752a8e58a10, processorArchitecture=MSIL">
  44. <HintPath>..\..\packages\Serilog.1.5.14\lib\net45\Serilog.FullNetFx.dll</HintPath>
  45. <Private>True</Private>
  46. </Reference>
  47. <Reference Include="Splat, Version=1.6.2.0, Culture=neutral, processorArchitecture=MSIL">
  48. <HintPath>..\..\packages\Splat.1.6.2\lib\Net45\Splat.dll</HintPath>
  49. <Private>True</Private>
  50. </Reference>
  51. <Reference Include="System" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Reactive.Core, Version=2.2.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  54. <HintPath>..\..\packages\Rx-Core.2.2.5\lib\net45\System.Reactive.Core.dll</HintPath>
  55. <Private>True</Private>
  56. </Reference>
  57. <Reference Include="System.Reactive.Interfaces, Version=2.2.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  58. <HintPath>..\..\packages\Rx-Interfaces.2.2.5\lib\net45\System.Reactive.Interfaces.dll</HintPath>
  59. <Private>True</Private>
  60. </Reference>
  61. <Reference Include="System.Reactive.Linq, Version=2.2.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  62. <HintPath>..\..\packages\Rx-Linq.2.2.5\lib\net45\System.Reactive.Linq.dll</HintPath>
  63. <Private>True</Private>
  64. </Reference>
  65. <Reference Include="System.Reactive.PlatformServices, Version=2.2.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  66. <HintPath>..\..\packages\Rx-PlatformServices.2.2.5\lib\net45\System.Reactive.PlatformServices.dll</HintPath>
  67. <Private>True</Private>
  68. </Reference>
  69. <Reference Include="System.Xml.Linq" />
  70. <Reference Include="System.Data.DataSetExtensions" />
  71. <Reference Include="Microsoft.CSharp" />
  72. <Reference Include="System.Data" />
  73. <Reference Include="System.Net.Http" />
  74. <Reference Include="System.Xml" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <Compile Include="App.xaml.cs">
  78. <DependentUpon>App.xaml</DependentUpon>
  79. </Compile>
  80. <Compile Include="MainWindow.xaml.cs">
  81. <DependentUpon>MainWindow.xaml</DependentUpon>
  82. </Compile>
  83. <Compile Include="Program.cs" />
  84. <Compile Include="Properties\AssemblyInfo.cs" />
  85. <Compile Include="ViewModels\ItemViewModel.cs" />
  86. <Compile Include="ViewModels\MainWindowViewModel.cs" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <None Include="App.config" />
  90. <None Include="packages.config" />
  91. </ItemGroup>
  92. <ItemGroup>
  93. <ProjectReference Include="..\..\src\Avalonia.Animation\Avalonia.Animation.csproj">
  94. <Project>{d211e587-d8bc-45b9-95a4-f297c8fa5200}</Project>
  95. <Name>Avalonia.Animation</Name>
  96. </ProjectReference>
  97. <ProjectReference Include="..\..\src\Avalonia.Base\Avalonia.Base.csproj">
  98. <Project>{b09b78d8-9b26-48b0-9149-d64a2f120f3f}</Project>
  99. <Name>Avalonia.Base</Name>
  100. </ProjectReference>
  101. <ProjectReference Include="..\..\src\Avalonia.Controls\Avalonia.Controls.csproj">
  102. <Project>{d2221c82-4a25-4583-9b43-d791e3f6820c}</Project>
  103. <Name>Avalonia.Controls</Name>
  104. </ProjectReference>
  105. <ProjectReference Include="..\..\src\Avalonia.DesignerSupport\Avalonia.DesignerSupport.csproj">
  106. <Project>{799a7bb5-3c2c-48b6-85a7-406a12c420da}</Project>
  107. <Name>Avalonia.DesignerSupport</Name>
  108. </ProjectReference>
  109. <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj">
  110. <Project>{7062ae20-5dcc-4442-9645-8195bdece63e}</Project>
  111. <Name>Avalonia.Diagnostics</Name>
  112. </ProjectReference>
  113. <ProjectReference Include="..\..\src\Avalonia.Input\Avalonia.Input.csproj">
  114. <Project>{62024b2d-53eb-4638-b26b-85eeaa54866e}</Project>
  115. <Name>Avalonia.Input</Name>
  116. </ProjectReference>
  117. <ProjectReference Include="..\..\src\Avalonia.Interactivity\Avalonia.Interactivity.csproj">
  118. <Project>{6b0ed19d-a08b-461c-a9d9-a9ee40b0c06b}</Project>
  119. <Name>Avalonia.Interactivity</Name>
  120. </ProjectReference>
  121. <ProjectReference Include="..\..\src\Avalonia.Layout\Avalonia.Layout.csproj">
  122. <Project>{42472427-4774-4c81-8aff-9f27b8e31721}</Project>
  123. <Name>Avalonia.Layout</Name>
  124. </ProjectReference>
  125. <ProjectReference Include="..\..\src\Avalonia.Logging.Serilog\Avalonia.Logging.Serilog.csproj">
  126. <Project>{B61B66A3-B82D-4875-8001-89D3394FE0C9}</Project>
  127. <Name>Avalonia.Logging.Serilog</Name>
  128. </ProjectReference>
  129. <ProjectReference Include="..\..\src\Avalonia.ReactiveUI\Avalonia.ReactiveUI.csproj">
  130. <Project>{6417b24e-49c2-4985-8db2-3ab9d898ec91}</Project>
  131. <Name>Avalonia.ReactiveUI</Name>
  132. </ProjectReference>
  133. <ProjectReference Include="..\..\src\Avalonia.SceneGraph\Avalonia.SceneGraph.csproj">
  134. <Project>{eb582467-6abb-43a1-b052-e981ba910e3a}</Project>
  135. <Name>Avalonia.SceneGraph</Name>
  136. </ProjectReference>
  137. <ProjectReference Include="..\..\src\Avalonia.Styling\Avalonia.Styling.csproj">
  138. <Project>{f1baa01a-f176-4c6a-b39d-5b40bb1b148f}</Project>
  139. <Name>Avalonia.Styling</Name>
  140. </ProjectReference>
  141. <ProjectReference Include="..\..\src\Avalonia.Themes.Default\Avalonia.Themes.Default.csproj">
  142. <Project>{3e10a5fa-e8da-48b1-ad44-6a5b6cb7750f}</Project>
  143. <Name>Avalonia.Themes.Default</Name>
  144. </ProjectReference>
  145. <ProjectReference Include="..\..\src\Markup\Avalonia.Markup.Xaml\Avalonia.Markup.Xaml.csproj">
  146. <Project>{3e53a01a-b331-47f3-b828-4a5717e77a24}</Project>
  147. <Name>Avalonia.Markup.Xaml</Name>
  148. </ProjectReference>
  149. <ProjectReference Include="..\..\src\Markup\Avalonia.Markup\Avalonia.Markup.csproj">
  150. <Project>{6417e941-21bc-467b-a771-0de389353ce6}</Project>
  151. <Name>Avalonia.Markup</Name>
  152. </ProjectReference>
  153. <ProjectReference Include="..\..\src\Windows\Avalonia.Direct2D1\Avalonia.Direct2D1.csproj">
  154. <Project>{3e908f67-5543-4879-a1dc-08eace79b3cd}</Project>
  155. <Name>Avalonia.Direct2D1</Name>
  156. </ProjectReference>
  157. <ProjectReference Include="..\..\src\Windows\Avalonia.Win32\Avalonia.Win32.csproj">
  158. <Project>{811a76cf-1cf6-440f-963b-bbe31bd72a82}</Project>
  159. <Name>Avalonia.Win32</Name>
  160. </ProjectReference>
  161. </ItemGroup>
  162. <ItemGroup>
  163. <EmbeddedResource Include="App.xaml">
  164. <SubType>Designer</SubType>
  165. </EmbeddedResource>
  166. </ItemGroup>
  167. <ItemGroup>
  168. <EmbeddedResource Include="MainWindow.xaml">
  169. <SubType>Designer</SubType>
  170. </EmbeddedResource>
  171. </ItemGroup>
  172. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  173. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  174. Other similar extension points exist, see Microsoft.Common.targets.
  175. <Target Name="BeforeBuild">
  176. </Target>
  177. <Target Name="AfterBuild">
  178. </Target>
  179. -->
  180. </Project>