summaryrefslogtreecommitdiff
path: root/src/mscorlib/Tools/PostProcessingTools.targets
blob: 7231540ddf704642b77df2a4b6f4392e38d335b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  <Import Project="$(MSBuildThisFileDirectory)\BclRewriter\BclRewriter.targets" />

  <ItemGroup>
    <AnnotatedAssembly Include="$(IntermediateOutputPath)$(TargetName)$(TargetExt)"/>

    <Clean Include="@(RewrittenAssembly->'$(FinalOutputPath)\%(Filename)%(Extension)')" />
    <Clean Include="$(FinalOutputPath)\$(TargetName).pdb" />
  </ItemGroup>

  <PropertyGroup>
    <CurrentAssemblyPdb>$(IntermediateOutputPath)$(TargetName).pdb</CurrentAssemblyPdb>
    <PostProcessingTargets>RewriteWithBclRewriter</PostProcessingTargets>
  </PropertyGroup>

  <Target Name="AfterBuild" DependsOnTargets="$(PostProcessingTargets)"
          Inputs="@(RewrittenAssembly)" Outputs="$(FinalOutputPath)\%(RewrittenAssembly.FileName)%(RewrittenAssembly.Extension)">
    
    <!-- Copy to the final output location -->
    <Copy Retries="3" SourceFiles="@(RewrittenAssembly)" DestinationFiles="$(FinalOutputPath)\%(RewrittenAssembly.FileName)%(RewrittenAssembly.Extension)"/>
    <Message Importance="High" Text="$(MSBuildProjectName) -&gt; $(FinalOutputPath)\%(RewrittenAssembly.FileName)%(RewrittenAssembly.Extension)" />
    <Copy Condition="Exists('$(CurrentAssemblyPdb)')" Retries="3" SourceFiles="$(CurrentAssemblyPdb)" DestinationFiles="$(FinalOutputPath)\$(TargetName).pdb"/>
  </Target>

</Project>