Previewer.csproj 719 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <Compile Update="**\*.xaml.cs">
  8. <DependentUpon>%(Filename)</DependentUpon>
  9. </Compile>
  10. <EmbeddedResource Include="**\*.xaml" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
  14. <ProjectReference Include="..\..\src\Avalonia.Themes.Simple\Avalonia.Themes.Simple.csproj" />
  15. </ItemGroup>
  16. <Import Project="..\..\build\Rx.props" />
  17. <Import Project="..\..\build\SampleApp.props" />
  18. <Import Project="..\..\build\ReferenceCoreLibraries.props" />
  19. </Project>