File size: 2,167 Bytes
8b2c3bf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
26
27
28
29
30
31
32
33
34
35
36
37
38
<!--

***********************************************************************************************

Microsoft.WorkflowBuildExtensions.targets



WARNING:  DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have

          created a backup copy.  Incorrect changes to this file will make it

          impossible to load or build your projects from the command-line or the IDE.



Copyright (C) Microsoft Corporation. All rights reserved.

***********************************************************************************************

-->
<Project>

  <!--

      With MSBuild 12, we've changed MSBuildToolsPath to for the first time point to a directory

      outside of the .NET Framework.  As a result of this, there were several targets files, of which

      this was one, that were being referenced as out of MSBuildToolsPath that are now no longer there.



      Thus, we are shimming those targets files so that they do still appear in MSBuildToolsPath, so that

      consumers of them are not broken, but since the targets files themselves are still part of .NET,

      the shim will internally simply redirect to the real copy of the targets file in the .NET Framework.

  -->

  <Import Project="$(MSBuildFrameworkToolsPath)\Microsoft.WorkflowBuildExtensions.targets" Condition="Exists('$(MSBuildFrameworkToolsPath)\Microsoft.WorkflowBuildExtensions.targets')" />

  <!--

      This target in $(MSBuildFrameworkToolsPath)\Microsoft.WorkflowBuildExtensions.targets does bad

      things to builds inside Visual Studio. Specifically, it generates files *only* when building from

      within VS, for both real and design-time builds. This leads to all kinds of build problems.



      In Dev16 we no longer need these files to exist on disk for Workflow Designer scenarios. We can't

      modify $(MSBuildFrameworkToolsPath)\Microsoft.WorkflowBuildExtensions.targets because that would

      break the Workflow Designer for older versions of VS. Instead, we effectively turn it off by

      overriding it with a no-op implementation here.

  -->
  <Target Name="GenerateCompiledExpressionsTempFile" />

</Project>