1234567891011121314151617181920212223242526272829 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFrameworks>net8.0;net8.0-android;net8.0-browser;net8.0-tizen</TargetFrameworks>
- <TargetFrameworks Condition="!$([MSBuild]::IsOsPlatform('Linux'))">$(TargetFrameworks);net8.0-ios</TargetFrameworks>
- <OutputType>Exe</OutputType>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <Nullable>enable</Nullable>
- <IncludeAvaloniaGenerators>true</IncludeAvaloniaGenerators>
- </PropertyGroup>
-
- <PropertyGroup>
- <AvaloniaSingleProject>true</AvaloniaSingleProject>
- <ApplicationTitle>Mobile Sandbox</ApplicationTitle>
- <ApplicationId>Avalonia.MobileSandbox</ApplicationId>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\packages\Avalonia\Avalonia.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Controls.ColorPicker\Avalonia.Controls.ColorPicker.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Controls.DataGrid\Avalonia.Controls.DataGrid.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
- <ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
- <ProjectReference Include="..\MiniMvvm\MiniMvvm.csproj" />
- <ProjectReference Include="..\SampleControls\ControlSamples.csproj" />
- </ItemGroup>
- <Import Project="..\..\build\BuildTargets.targets" />
- <Import Project="..\..\build\SourceGenerators.props" />
- </Project>
|