RenderTest.csproj 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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>{F1FDC5B0-4654-416F-AE69-E3E9BBD87801}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>RenderTest</RootNamespace>
  11. <AssemblyName>RenderTest</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  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. </PropertyGroup>
  36. <PropertyGroup>
  37. <StartupObject />
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="Serilog, Version=1.5.0.0, Culture=neutral, PublicKeyToken=24c2f752a8e58a10, processorArchitecture=MSIL">
  41. <HintPath>..\..\packages\Serilog.1.5.14\lib\net45\Serilog.dll</HintPath>
  42. <Private>True</Private>
  43. </Reference>
  44. <Reference Include="Serilog.FullNetFx, Version=1.5.0.0, Culture=neutral, PublicKeyToken=24c2f752a8e58a10, processorArchitecture=MSIL">
  45. <HintPath>..\..\packages\Serilog.1.5.14\lib\net45\Serilog.FullNetFx.dll</HintPath>
  46. <Private>True</Private>
  47. </Reference>
  48. <Reference Include="System" />
  49. <Reference Include="System.Core" />
  50. <Reference Include="System.Reactive.Core, Version=3.0.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
  51. <HintPath>..\..\packages\System.Reactive.Core.3.0.0\lib\net45\System.Reactive.Core.dll</HintPath>
  52. <Private>True</Private>
  53. </Reference>
  54. <Reference Include="System.Reactive.Interfaces, Version=3.0.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
  55. <HintPath>..\..\packages\System.Reactive.Interfaces.3.0.0\lib\net45\System.Reactive.Interfaces.dll</HintPath>
  56. <Private>True</Private>
  57. </Reference>
  58. <Reference Include="System.Reactive.Linq, Version=3.0.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
  59. <HintPath>..\..\packages\System.Reactive.Linq.3.0.0\lib\net45\System.Reactive.Linq.dll</HintPath>
  60. <Private>True</Private>
  61. </Reference>
  62. <Reference Include="System.Reactive.PlatformServices, Version=3.0.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
  63. <HintPath>..\..\packages\System.Reactive.PlatformServices.3.0.0\lib\net45\System.Reactive.PlatformServices.dll</HintPath>
  64. <Private>True</Private>
  65. </Reference>
  66. <Reference Include="System.Reactive.Windows.Threading, Version=3.0.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
  67. <HintPath>..\..\packages\System.Reactive.Windows.Threading.3.0.0\lib\net45\System.Reactive.Windows.Threading.dll</HintPath>
  68. <Private>True</Private>
  69. </Reference>
  70. <Reference Include="System.Xml.Linq" />
  71. <Reference Include="System.Data.DataSetExtensions" />
  72. <Reference Include="Microsoft.CSharp" />
  73. <Reference Include="System.Data" />
  74. <Reference Include="System.Net.Http" />
  75. <Reference Include="System.Xml" />
  76. <Reference Include="WindowsBase" />
  77. </ItemGroup>
  78. <ItemGroup>
  79. <Compile Include="App.xaml.cs">
  80. <DependentUpon>App.xaml</DependentUpon>
  81. </Compile>
  82. <Compile Include="Program.cs" />
  83. <Compile Include="Properties\AssemblyInfo.cs" />
  84. <Compile Include="MainWindow.xaml.cs">
  85. <DependentUpon>MainWindow.xaml</DependentUpon>
  86. </Compile>
  87. </ItemGroup>
  88. <ItemGroup>
  89. <None Include="App.config" />
  90. <None Include="packages.config" />
  91. </ItemGroup>
  92. <ItemGroup>
  93. <EmbeddedResource Include="App.xaml">
  94. <SubType>Designer</SubType>
  95. </EmbeddedResource>
  96. </ItemGroup>
  97. <ItemGroup>
  98. <ProjectReference Include="..\..\src\Avalonia.Animation\Avalonia.Animation.csproj">
  99. <Project>{d211e587-d8bc-45b9-95a4-f297c8fa5200}</Project>
  100. <Name>Avalonia.Animation</Name>
  101. </ProjectReference>
  102. <ProjectReference Include="..\..\src\Avalonia.Base\Avalonia.Base.csproj">
  103. <Project>{b09b78d8-9b26-48b0-9149-d64a2f120f3f}</Project>
  104. <Name>Avalonia.Base</Name>
  105. </ProjectReference>
  106. <ProjectReference Include="..\..\src\Avalonia.Controls\Avalonia.Controls.csproj">
  107. <Project>{d2221c82-4a25-4583-9b43-d791e3f6820c}</Project>
  108. <Name>Avalonia.Controls</Name>
  109. </ProjectReference>
  110. <ProjectReference Include="..\..\src\Avalonia.DesignerSupport\Avalonia.DesignerSupport.csproj">
  111. <Project>{799a7bb5-3c2c-48b6-85a7-406a12c420da}</Project>
  112. <Name>Avalonia.DesignerSupport</Name>
  113. </ProjectReference>
  114. <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj">
  115. <Project>{7062ae20-5dcc-4442-9645-8195bdece63e}</Project>
  116. <Name>Avalonia.Diagnostics</Name>
  117. </ProjectReference>
  118. <ProjectReference Include="..\..\src\Avalonia.DotNetFrameworkRuntime\Avalonia.DotNetFrameworkRuntime.csproj">
  119. <Project>{4a1abb09-9047-4bd5-a4ad-a055e52c5ee0}</Project>
  120. <Name>Avalonia.DotNetFrameworkRuntime</Name>
  121. </ProjectReference>
  122. <ProjectReference Include="..\..\src\Avalonia.Input\Avalonia.Input.csproj">
  123. <Project>{62024b2d-53eb-4638-b26b-85eeaa54866e}</Project>
  124. <Name>Avalonia.Input</Name>
  125. </ProjectReference>
  126. <ProjectReference Include="..\..\src\Avalonia.Interactivity\Avalonia.Interactivity.csproj">
  127. <Project>{6b0ed19d-a08b-461c-a9d9-a9ee40b0c06b}</Project>
  128. <Name>Avalonia.Interactivity</Name>
  129. </ProjectReference>
  130. <ProjectReference Include="..\..\src\Avalonia.Layout\Avalonia.Layout.csproj">
  131. <Project>{42472427-4774-4c81-8aff-9f27b8e31721}</Project>
  132. <Name>Avalonia.Layout</Name>
  133. </ProjectReference>
  134. <ProjectReference Include="..\..\src\Avalonia.Logging.Serilog\Avalonia.Logging.Serilog.csproj">
  135. <Project>{b61b66a3-b82d-4875-8001-89d3394fe0c9}</Project>
  136. <Name>Avalonia.Logging.Serilog</Name>
  137. </ProjectReference>
  138. <ProjectReference Include="..\..\src\Avalonia.ReactiveUI\Avalonia.ReactiveUI.csproj">
  139. <Project>{6417b24e-49c2-4985-8db2-3ab9d898ec91}</Project>
  140. <Name>Avalonia.ReactiveUI</Name>
  141. </ProjectReference>
  142. <ProjectReference Include="..\..\src\Avalonia.SceneGraph\Avalonia.SceneGraph.csproj">
  143. <Project>{eb582467-6abb-43a1-b052-e981ba910e3a}</Project>
  144. <Name>Avalonia.SceneGraph</Name>
  145. </ProjectReference>
  146. <ProjectReference Include="..\..\src\Avalonia.Styling\Avalonia.Styling.csproj">
  147. <Project>{f1baa01a-f176-4c6a-b39d-5b40bb1b148f}</Project>
  148. <Name>Avalonia.Styling</Name>
  149. </ProjectReference>
  150. <ProjectReference Include="..\..\src\Avalonia.Themes.Default\Avalonia.Themes.Default.csproj">
  151. <Project>{3e10a5fa-e8da-48b1-ad44-6a5b6cb7750f}</Project>
  152. <Name>Avalonia.Themes.Default</Name>
  153. </ProjectReference>
  154. <ProjectReference Include="..\..\src\Gtk\Avalonia.Cairo\Avalonia.Cairo.csproj">
  155. <Project>{fb05ac90-89ba-4f2f-a924-f37875fb547c}</Project>
  156. <Name>Avalonia.Cairo</Name>
  157. </ProjectReference>
  158. <ProjectReference Include="..\..\src\Gtk\Avalonia.Gtk\Avalonia.Gtk.csproj">
  159. <Project>{54f237d5-a70a-4752-9656-0c70b1a7b047}</Project>
  160. <Name>Avalonia.Gtk</Name>
  161. </ProjectReference>
  162. <ProjectReference Include="..\..\src\Markup\Avalonia.Markup.Xaml\Avalonia.Markup.Xaml.csproj">
  163. <Project>{3e53a01a-b331-47f3-b828-4a5717e77a24}</Project>
  164. <Name>Avalonia.Markup.Xaml</Name>
  165. </ProjectReference>
  166. <ProjectReference Include="..\..\src\Markup\Avalonia.Markup\Avalonia.Markup.csproj">
  167. <Project>{6417e941-21bc-467b-a771-0de389353ce6}</Project>
  168. <Name>Avalonia.Markup</Name>
  169. </ProjectReference>
  170. <ProjectReference Include="..\..\src\Windows\Avalonia.Direct2D1\Avalonia.Direct2D1.csproj">
  171. <Project>{3e908f67-5543-4879-a1dc-08eace79b3cd}</Project>
  172. <Name>Avalonia.Direct2D1</Name>
  173. </ProjectReference>
  174. <ProjectReference Include="..\..\src\Windows\Avalonia.Win32\Avalonia.Win32.csproj">
  175. <Project>{811a76cf-1cf6-440f-963b-bbe31bd72a82}</Project>
  176. <Name>Avalonia.Win32</Name>
  177. </ProjectReference>
  178. </ItemGroup>
  179. <ItemGroup>
  180. <EmbeddedResource Include="MainWindow.xaml">
  181. <SubType>Designer</SubType>
  182. </EmbeddedResource>
  183. </ItemGroup>
  184. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  185. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  186. Other similar extension points exist, see Microsoft.Common.targets.
  187. <Target Name="BeforeBuild">
  188. </Target>
  189. <Target Name="AfterBuild">
  190. </Target>
  191. -->
  192. </Project>