12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.ReactiveUI\Avalonia.ReactiveUI.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="Views\BarView.axaml.cs">
- <DependentUpon>BarView.axaml</DependentUpon>
- </Compile>
- <Compile Update="Views\FooView.axaml.cs">
- <DependentUpon>FooView.axaml</DependentUpon>
- </Compile>
- </ItemGroup>
- <Import Project="..\..\build\SampleApp.props" />
- <Import Project="..\..\build\ReferenceCoreLibraries.props" />
- <Import Project="..\..\build\BuildTargets.targets" />
- <Import Project="..\..\build\ReactiveUI.props" />
- </Project>
|