зеркало из https://github.com/dotnet/razor.git
59 строки
2.8 KiB
XML
59 строки
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" />
|
|
|
|
<PropertyGroup>
|
|
<PackageVersion Condition=" '$(PackageVersion)' == '' ">$(Version)</PackageVersion>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="eng\targets\Packaging.targets" />
|
|
|
|
<!-- Workaround https://github.com/dotnet/cli/issues/10528 -->
|
|
<PropertyGroup>
|
|
<BundledNETCorePlatformsPackageVersion>$(MicrosoftNETCorePlatformsPackageVersion)</BundledNETCorePlatformsPackageVersion>
|
|
</PropertyGroup>
|
|
|
|
<!-- Global Analyzer Config -->
|
|
<ItemGroup>
|
|
<!-- Always include Common.globalconfig -->
|
|
<EditorConfigFiles Include="$(RepositoryEngineeringDir)config\globalconfigs\Common.globalconfig" />
|
|
<!-- Include Shipping.globalconfig for shipping projects -->
|
|
<EditorConfigFiles Condition="'$(IsShipping)' == 'true'" Include="$(RepositoryEngineeringDir)config\globalconfigs\Shipping.globalconfig" />
|
|
<!-- Include NonShipping.globalconfig for non-shipping projects, except for API shims -->
|
|
<EditorConfigFiles Condition="'$(IsShipping)' != 'true' AND '$(IsApiShim)' != 'true'" Include="$(RepositoryEngineeringDir)config\globalconfigs\NonShipping.globalconfig" />
|
|
<!-- Include ApiShim.globalconfig for API shim projects -->
|
|
<EditorConfigFiles Condition="'$(IsApiShim)' == 'true'" Include="$(RepositoryEngineeringDir)config\globalconfigs\ApiShim.globalconfig" />
|
|
</ItemGroup>
|
|
|
|
<!--
|
|
Where necessary, do not pretend we support iOS or Android. This file is imported after project
|
|
has a chance to set $(RemoveDevicePlatformSupport) and long after @(SupportedPlatforms) is initialized.
|
|
-->
|
|
<ItemGroup Condition=" '$(RemoveDevicePlatformSupport)' == 'true' ">
|
|
<SupportedPlatform Remove="Android" />
|
|
<SupportedPlatform Remove="iOS" />
|
|
</ItemGroup>
|
|
|
|
<!--
|
|
Warn consumers until the underlying issue is fixed
|
|
https://github.com/dotnet/roslyn/issues/72657
|
|
-->
|
|
<Target Name="CheckNuPkgEnvEndsWithSlash"
|
|
AfterTargets="AfterCompile">
|
|
<Warning Condition="'$(NUGET_PACKAGES)' != '' AND !$(NUGET_PACKAGES.EndsWith($([System.String]::new($([System.IO.Path]::DirectorySeparatorChar)))))"
|
|
Text="NUGET_PACKAGES should end with a slash or it will lead to editorconfig issues: $(NUGET_PACKAGES)" />
|
|
</Target>
|
|
|
|
<Target Name="GetCustomAssemblyAttributes"
|
|
BeforeTargets="GetAssemblyAttributes"
|
|
Condition=" '$(MSBuildProjectExtension)' == '.csproj' "
|
|
DependsOnTargets="InitializeSourceControlInformation">
|
|
<ItemGroup>
|
|
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute" Condition="'$(Serviceable)' == 'true'">
|
|
<_Parameter1>Serviceable</_Parameter1>
|
|
<_Parameter2>True</_Parameter2>
|
|
</AssemblyAttribute>
|
|
</ItemGroup>
|
|
</Target>
|
|
</Project>
|