ControlCatalog.csproj 2.4 KB

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