BindingTest.csproj 8.8 KB

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