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.8 KiB
35 lines
1.8 KiB
<Project Sdk="Microsoft.Build.Traversal">
|
|
<ItemGroup>
|
|
<!-- Build Avalonia.Build.Tasks first because everything depends on it -->
|
|
<ProjectReference Include="src/Avalonia.Build.Tasks/Avalonia.Build.Tasks.csproj" />
|
|
<ProjectReference Include="src/**/*.*proj" />
|
|
<ProjectReference Condition="'$(SkipBuildingSamples)' != 'True'" Include="samples/**/*.*proj" />
|
|
<ProjectReference Condition="'$(SkipBuildingTests)' != 'True'" Include="tests/**/*.*proj" Exclude="tests/BuildTests/**" />
|
|
<ProjectReference Include="packages/**/*.*proj" />
|
|
<ProjectReference Remove="**/*.shproj" />
|
|
<ProjectReference Remove="src/Markup/Avalonia.Markup.Xaml.Loader/xamlil.github/**/*.*proj" />
|
|
<!-- Exclude iOS, Android and Browser samples from build -->
|
|
<ProjectReference Remove="samples/*.iOS/*.csproj" />
|
|
<ProjectReference Remove="samples/*.Android/*.csproj" />
|
|
<ProjectReference Remove="samples/*.Browser/*.csproj" />
|
|
<ProjectReference Remove="samples/*.Blazor/*.csproj" />
|
|
<ProjectReference Remove="samples/*.Tizen/*.csproj" />
|
|
<ProjectReference Remove="samples/SingleProjectSandbox/*.csproj" />
|
|
<ProjectReference Remove="samples/ControlCatalog.Desktop/*.*proj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="!$([MSBuild]::IsOsPlatform('Windows'))">
|
|
<!-- Build mobile backends only on Windows, where we have installed android workload -->
|
|
<ProjectReference Remove="src/Android/**/*.*proj" />
|
|
<ProjectReference Remove="src/iOS/**/*.*proj" />
|
|
<ProjectReference Remove="src/Tizen/**/*.*proj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(SkipObscurePlatforms)' == 'True'">
|
|
<ProjectReference Remove="**/*Tizen/**/*.*proj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.VisualStudio.SlnGen" Version="8.5.17" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
</Project>
|
|
|