123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
- <IncludeAvaloniaGenerators>true</IncludeAvaloniaGenerators>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\packages\Avalonia\Avalonia.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Desktop\Avalonia.Desktop.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
- <ProjectReference Include="..\MiniMvvm\MiniMvvm.csproj" />
- <ProjectReference Include="..\SampleControls\ControlSamples.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="Assets\chat.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <Import Project="..\..\build\BuildTargets.targets" />
- <Import Project="..\..\build\SourceGenerators.props" />
- <Import Project="..\..\build\NullableEnable.props" />
- </Project>
|