BindingTest.csproj 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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>{08B3E6B9-1CD5-443C-9F61-6D49D1C5F162}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>BindingTest</RootNamespace>
  11. <AssemblyName>BindingTest</AssemblyName>
  12. <TargetFrameworkVersion>v4.6</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. <EmbeddedResource Include="App.paml">
  78. <SubType>Designer</SubType>
  79. </EmbeddedResource>
  80. <Compile Include="App.paml.cs">
  81. <DependentUpon>App.paml</DependentUpon>
  82. </Compile>
  83. <Compile Include="MainWindow.paml.cs">
  84. <DependentUpon>MainWindow.paml</DependentUpon>
  85. </Compile>
  86. <Compile Include="Properties\AssemblyInfo.cs" />
  87. <Compile Include="TestItemView.paml.cs">
  88. <DependentUpon>TestItemView.paml</DependentUpon>
  89. </Compile>
  90. <Compile Include="ViewModels\MainWindowViewModel.cs" />
  91. <Compile Include="ViewModels\TestItem.cs" />
  92. </ItemGroup>
  93. <ItemGroup>
  94. <None Include="App.config" />
  95. <EmbeddedResource Include="MainWindow.paml">
  96. <SubType>Designer</SubType>
  97. </EmbeddedResource>
  98. <None Include="packages.config" />
  99. <EmbeddedResource Include="TestItemView.paml" />
  100. </ItemGroup>
  101. <ItemGroup>
  102. <ProjectReference Include="..\..\src\Markup\Perspex.Markup.Xaml\Perspex.Markup.Xaml.csproj">
  103. <Project>{3e53a01a-b331-47f3-b828-4a5717e77a24}</Project>
  104. <Name>Perspex.Markup.Xaml</Name>
  105. </ProjectReference>
  106. <ProjectReference Include="..\..\src\Markup\Perspex.Markup\Perspex.Markup.csproj">
  107. <Project>{6417e941-21bc-467b-a771-0de389353ce6}</Project>
  108. <Name>Perspex.Markup</Name>
  109. </ProjectReference>
  110. <ProjectReference Include="..\..\src\Perspex.Animation\Perspex.Animation.csproj">
  111. <Project>{d211e587-d8bc-45b9-95a4-f297c8fa5200}</Project>
  112. <Name>Perspex.Animation</Name>
  113. </ProjectReference>
  114. <ProjectReference Include="..\..\src\Perspex.Application\Perspex.Application.csproj">
  115. <Project>{799a7bb5-3c2c-48b6-85a7-406a12c420da}</Project>
  116. <Name>Perspex.Application</Name>
  117. </ProjectReference>
  118. <ProjectReference Include="..\..\src\Perspex.Base\Perspex.Base.csproj">
  119. <Project>{b09b78d8-9b26-48b0-9149-d64a2f120f3f}</Project>
  120. <Name>Perspex.Base</Name>
  121. </ProjectReference>
  122. <ProjectReference Include="..\..\src\Perspex.Controls\Perspex.Controls.csproj">
  123. <Project>{d2221c82-4a25-4583-9b43-d791e3f6820c}</Project>
  124. <Name>Perspex.Controls</Name>
  125. </ProjectReference>
  126. <ProjectReference Include="..\..\src\Perspex.Diagnostics\Perspex.Diagnostics.csproj">
  127. <Project>{7062ae20-5dcc-4442-9645-8195bdece63e}</Project>
  128. <Name>Perspex.Diagnostics</Name>
  129. </ProjectReference>
  130. <ProjectReference Include="..\..\src\Perspex.Input\Perspex.Input.csproj">
  131. <Project>{62024b2d-53eb-4638-b26b-85eeaa54866e}</Project>
  132. <Name>Perspex.Input</Name>
  133. </ProjectReference>
  134. <ProjectReference Include="..\..\src\Perspex.Interactivity\Perspex.Interactivity.csproj">
  135. <Project>{6b0ed19d-a08b-461c-a9d9-a9ee40b0c06b}</Project>
  136. <Name>Perspex.Interactivity</Name>
  137. </ProjectReference>
  138. <ProjectReference Include="..\..\src\Perspex.Layout\Perspex.Layout.csproj">
  139. <Project>{42472427-4774-4c81-8aff-9f27b8e31721}</Project>
  140. <Name>Perspex.Layout</Name>
  141. </ProjectReference>
  142. <ProjectReference Include="..\..\src\Perspex.ReactiveUI\Perspex.ReactiveUI.csproj">
  143. <Project>{6417b24e-49c2-4985-8db2-3ab9d898ec91}</Project>
  144. <Name>Perspex.ReactiveUI</Name>
  145. </ProjectReference>
  146. <ProjectReference Include="..\..\src\Perspex.SceneGraph\Perspex.SceneGraph.csproj">
  147. <Project>{eb582467-6abb-43a1-b052-e981ba910e3a}</Project>
  148. <Name>Perspex.SceneGraph</Name>
  149. </ProjectReference>
  150. <ProjectReference Include="..\..\src\Perspex.Styling\Perspex.Styling.csproj">
  151. <Project>{f1baa01a-f176-4c6a-b39d-5b40bb1b148f}</Project>
  152. <Name>Perspex.Styling</Name>
  153. </ProjectReference>
  154. <ProjectReference Include="..\..\src\Perspex.Themes.Default\Perspex.Themes.Default.csproj">
  155. <Project>{3e10a5fa-e8da-48b1-ad44-6a5b6cb7750f}</Project>
  156. <Name>Perspex.Themes.Default</Name>
  157. </ProjectReference>
  158. <ProjectReference Include="..\..\src\Windows\Perspex.Direct2D1\Perspex.Direct2D1.csproj">
  159. <Project>{3e908f67-5543-4879-a1dc-08eace79b3cd}</Project>
  160. <Name>Perspex.Direct2D1</Name>
  161. </ProjectReference>
  162. <ProjectReference Include="..\..\src\Windows\Perspex.Win32\Perspex.Win32.csproj">
  163. <Project>{811a76cf-1cf6-440f-963b-bbe31bd72a82}</Project>
  164. <Name>Perspex.Win32</Name>
  165. </ProjectReference>
  166. </ItemGroup>
  167. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  168. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  169. Other similar extension points exist, see Microsoft.Common.targets.
  170. <Target Name="BeforeBuild">
  171. </Target>
  172. <Target Name="AfterBuild">
  173. </Target>
  174. -->
  175. </Project>