ReactiveUIDemo.csproj 992 B

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