csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.9 KiB
35 lines
1.9 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(AvsCurrentTargetFramework);$(AvsCurrentAndroidTargetFramework);$(AvsCurrentBrowserTargetFramework)</TargetFrameworks>
|
|
<TargetFrameworks Condition="'$(IncludeIOSTargetSamples)' == 'true'">$(TargetFrameworks);$(AvsCurrentIOSTargetFramework)</TargetFrameworks>
|
|
<TargetFrameworks Condition="'$(IncludeMacTargetSamples)' == 'true'">$(TargetFrameworks);$(AvsCurrentMacOSTargetFramework)</TargetFrameworks>
|
|
<TargetFrameworks Condition="'$(IncludeTizenTargetSamples)' == 'true'">$(TargetFrameworks);$(AvsCurrentTizenTargetFramework)</TargetFrameworks>
|
|
<OutputType>Exe</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Nullable>enable</Nullable>
|
|
<IncludeAvaloniaGenerators>true</IncludeAvaloniaGenerators>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<AvaloniaSingleProject>true</AvaloniaSingleProject>
|
|
<ApplicationTitle>Single Project Sandbox</ApplicationTitle>
|
|
<ApplicationId>Avalonia.SingleProjectSandbox</ApplicationId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\packages\Avalonia\Avalonia.csproj" />
|
|
<ProjectReference Include="..\..\src\Avalonia.Controls.ColorPicker\Avalonia.Controls.ColorPicker.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>
|
|
|
|
<ItemGroup>
|
|
<!-- Only useful in VS, but https://www.vsixcookbook.com/tips/projects.html -->
|
|
<ProjectCapability Include="DiagnoseCapabilities" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\..\build\BuildTargets.targets" />
|
|
<Import Project="..\..\build\SourceGenerators.props" />
|
|
</Project>
|
|
|