ReactiveUIDemo.csproj 1.1 KB

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
  9. <ProjectReference Include="..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
  10. <ProjectReference Include="..\..\src\Avalonia.ReactiveUI\Avalonia.ReactiveUI.csproj" />
  11. <ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <Compile Update="Views\BarView.axaml.cs">
  15. <DependentUpon>BarView.axaml</DependentUpon>
  16. </Compile>
  17. <Compile Update="Views\FooView.axaml.cs">
  18. <DependentUpon>FooView.axaml</DependentUpon>
  19. </Compile>
  20. </ItemGroup>
  21. <Import Project="..\..\build\SampleApp.props" />
  22. <Import Project="..\..\build\ReferenceCoreLibraries.props" />
  23. <Import Project="..\..\build\BuildTargets.targets" />
  24. <Import Project="..\..\build\ReactiveUI.props" />
  25. </Project>