website/targets/Imports.targets
2023-11-20 21:42:55 -06:00

32 lines
No EOL
1.3 KiB
XML

<Project>
<ItemGroup>
<!-- Show launchSettings.json in the project if it exists. -->
<None Include="$(AppDesignerFolder)\launchSettings.json" Condition="Exists('$(AppDesignerFolder)\launchSettings.json')"/>
</ItemGroup>
<!-- Make sure additional files show up in Solution Explorer -->
<ItemGroup>
<!--
The SDK should automatically add this available item name, but currently does not.
https://github.com/dotnet/project-system/issues/2160
-->
<AvailableItemName Include="AdditionalFiles"/>
</ItemGroup>
<!--
Default settings for analyzer packages.
-->
<PropertyGroup Condition="'$(IsPackable)' == 'true' and '$(IsAnalyzer)' == 'true'">
<DevelopmentDependency>true</DevelopmentDependency>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<ItemGroup Condition="'$(IsPackable)' == 'true' and '$(IsAnalyzer)' == 'true'">
<!-- Analyzer packages should not have any dependencies. -->
<PackageReference Update="@(PackageReference)" PrivateAssets="all"/>
<ProjectReference Update="@(ProjectReference)" PrivateAssets="all"/>
</ItemGroup>
<Import Project="NativeAot.targets" Condition="'$(RunAOTCompilation)' == 'true'"/>
<Import Project="NativeAotCompatible.targets" Condition="'$(IsAotCompatible)' == 'true'"/>
</Project>