50 lines
2.8 KiB
XML
50 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="12.0" InitialTargets="CheckForBuildTools" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<Target Name="CheckForBuildTools">
|
|
<Error Condition="!Exists('$(ToolsDir)') and '$(OverrideToolsDir)'=='true'"
|
|
Text="The tools directory [$(ToolsDir)] does not exist. Please run sync in your enlistment to ensure the tools are installed before attempting to build an individual project." />
|
|
<Error Condition="!Exists('$(ToolsDir)') and '$(OverrideToolsDir)'!='true'"
|
|
Text="The tools directory [$(ToolsDir)] does not exist. Please run init-tools.cmd in your enlistment to ensure the tools are installed before attempting to build an individual project." />
|
|
</Target>
|
|
|
|
<!-- Provide default targets which can be hooked onto or overridden as necessary -->
|
|
<Target Name="BuildAndTest" DependsOnTargets="Build;Test" />
|
|
<Target Name="RebuildAndTest" DependsOnTargets="Rebuild;Test" />
|
|
<Target Name="Test" />
|
|
|
|
<!-- CoreRT projects are not CLSCompliant by default -->
|
|
<PropertyGroup>
|
|
<CLSCompliant Condition="'$(CLSCompliant)'==''">false</CLSCompliant>
|
|
</PropertyGroup>
|
|
|
|
<!-- Setting IsTestProject prior to Build.Common.targets -->
|
|
<PropertyGroup>
|
|
<IsTestProject Condition="'$(IsTestProject)'=='' And $(MSBuildProjectName.EndsWith('.tests', StringComparison.OrdinalIgnoreCase))">true</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(ToolsDir)/Build.Common.targets" />
|
|
|
|
<!-- Override corefx multi targeting support -->
|
|
<Target Name="ConvertCommonMetadataToAdditionalProperties" BeforeTargets="AssignProjectConfiguration" />
|
|
|
|
<!-- OverrideLicenseUrl is temporary till we update the buildtools to v2 -->
|
|
<Target Name="OverrideLicenseUrl" BeforeTargets="GenerateNuSpec">
|
|
<PropertyGroup>
|
|
<LicenseUrl>https://github.com/dotnet/corert/blob/master/LICENSE.TXT</LicenseUrl>
|
|
</PropertyGroup>
|
|
</Target>
|
|
|
|
<PropertyGroup Condition="'$(TargetFrameworkIdentifier)' != '.NETFramework'">
|
|
<!-- We don't use any of MSBuild's resolution logic for resolving the framework, so just set these two properties to any folder that exists to skip
|
|
the GenerateReferenceAssemblyPaths task (not target) and to prevent it from outputting a warning (MSB3644). -->
|
|
<_TargetFrameworkDirectories>$(MSBuildThisFileDirectory)/Documentation</_TargetFrameworkDirectories>
|
|
<_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory)/Documentation</_FullFrameworkReferenceAssemblyPaths>
|
|
<!-- We do not want to target a portable profile.
|
|
TODO: Make this the default in buildtools so this is not necessary. -->
|
|
<TargetFrameworkProfile></TargetFrameworkProfile>
|
|
<!-- We set this property to avoid MSBuild errors regarding not setting TargetFrameworkProfile (see above line) -->
|
|
<PortableNuGetMode>true</PortableNuGetMode>
|
|
</PropertyGroup>
|
|
</Project>
|