1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks>
- <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
- <IncludeAvaloniaGenerators>true</IncludeAvaloniaGenerators>
- <!--<AvaloniaXamlIlDebuggerLaunch>true</AvaloniaXamlIlDebuggerLaunch>-->
- <EnableAvaloniaXamlCompilation>false</EnableAvaloniaXamlCompilation>
- <IncludeAvaloniaGenerators>true</IncludeAvaloniaGenerators>
- <IsPackable>false</IsPackable>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\..\src\Avalonia.Base\Avalonia.Base.csproj" />
- <ProjectReference Include="..\..\..\..\src\Avalonia.Controls\Avalonia.Controls.csproj" />
- <ProjectReference Include="..\..\..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
- <ProjectReference Include="..\..\..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
- <ProjectReference Include="..\..\..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
- </ItemGroup>
- <Import Project="..\..\..\..\build\SampleApp.props" />
- <Import Project="..\..\..\..\build\ReferenceCoreLibraries.props" />
- <Import Project="..\..\..\..\build\BuildTargets.targets" />
- <Import Project="..\..\..\..\build\SourceGenerators.props" />
- </Project>
|