ProducesNoOutput.Imports.targets 907 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  
  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  
  <PropertyGroup>
    <TargetPath></TargetPath>    <!-- Prevent projects referencing this from trying to pass us to the compiler -->
  </PropertyGroup>
  
  <Target Name="CoreCompile" />                               <!-- Prevent Csc from being called -->  
  <Target Name="CopyFilesToOutputDirectory" />                <!-- Prevent non-existent output from being copied -->
  <Target Name="GenerateTargetFrameworkMonikerAttribute" />   <!-- Don't generate TFM attribute -->  
  <Target Name="RuntimeImplementationProjectOutputGroup" />   <!-- Group always attempts resolve runtime, regardless of <CopyNuGetImplementations>-->
  
</Project>