RenderTest.csproj 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp2.0</TargetFramework>
  5. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  6. <RootNamespace>RenderTest</RootNamespace>
  7. <AssemblyName>RenderTest</AssemblyName>
  8. </PropertyGroup>
  9. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  10. <PlatformTarget>AnyCPU</PlatformTarget>
  11. <DebugSymbols>true</DebugSymbols>
  12. <DebugType>full</DebugType>
  13. <Optimize>false</Optimize>
  14. <OutputPath>bin\Debug\</OutputPath>
  15. <DefineConstants>DEBUG;TRACE</DefineConstants>
  16. <ErrorReport>prompt</ErrorReport>
  17. <WarningLevel>4</WarningLevel>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  20. <PlatformTarget>AnyCPU</PlatformTarget>
  21. <DebugType>pdbonly</DebugType>
  22. <Optimize>true</Optimize>
  23. <OutputPath>bin\Release\</OutputPath>
  24. <DefineConstants>TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <Compile Update="**\*.xaml.cs">
  30. <DependentUpon>%(Filename)</DependentUpon>
  31. </Compile>
  32. <EmbeddedResource Include="**\*.xaml">
  33. <SubType>Designer</SubType>
  34. </EmbeddedResource>
  35. </ItemGroup>
  36. <ItemGroup>
  37. <ProjectReference Include="..\..\src\Avalonia.DesignerSupport\Avalonia.DesignerSupport.csproj" />
  38. <ProjectReference Include="..\..\src\Avalonia.DotNetCoreRuntime\Avalonia.DotNetCoreRuntime.csproj" />
  39. <ProjectReference Include="..\..\src\Linux\Avalonia.LinuxFramebuffer\Avalonia.LinuxFramebuffer.csproj" />
  40. <ProjectReference Include="..\..\src\Avalonia.Base\Avalonia.Base.csproj" />
  41. <ProjectReference Include="..\..\src\Markup\Avalonia.Markup.Xaml\Avalonia.Markup.Xaml.csproj" />
  42. <ProjectReference Include="..\..\src\Markup\Avalonia.Markup\Avalonia.Markup.csproj" />
  43. <ProjectReference Include="..\..\src\Avalonia.Animation\Avalonia.Animation.csproj" />
  44. <ProjectReference Include="..\..\src\Avalonia.Controls\Avalonia.Controls.csproj" />
  45. <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
  46. <ProjectReference Include="..\..\src\Avalonia.Input\Avalonia.Input.csproj" />
  47. <ProjectReference Include="..\..\src\Avalonia.Interactivity\Avalonia.Interactivity.csproj" />
  48. <ProjectReference Include="..\..\src\Avalonia.Layout\Avalonia.Layout.csproj" />
  49. <ProjectReference Include="..\..\src\Avalonia.ReactiveUI\Avalonia.ReactiveUI.csproj" />
  50. <ProjectReference Include="..\..\src\Avalonia.Visuals\Avalonia.Visuals.csproj" />
  51. <ProjectReference Include="..\..\src\Avalonia.Styling\Avalonia.Styling.csproj" />
  52. <ProjectReference Include="..\..\src\Avalonia.Themes.Default\Avalonia.Themes.Default.csproj" />
  53. <ProjectReference Include="..\..\src\Avalonia.Logging.Serilog\Avalonia.Logging.Serilog.csproj" />
  54. </ItemGroup>
  55. <Import Project="..\..\build\Serilog.props" />
  56. <Import Project="..\..\build\Rx.props" />
  57. <Import Project="..\..\build\ReactiveUI.props" />
  58. </Project>