Skip to content

Commit 3538148

Browse files
monojenkinsakoeplinger
authored andcommitted
[2017-12] [xbuild] add property that is available in msbuild (#7224)
* add property that is available in msbuild They fsharp team decided to remove a `#if MONO` with the assumption that `xbuild` is dead and everything has switched over to `msbuild`: https://github.com/Microsoft/visualfsharp/pull/3969/files#diff-bcb4028a918d13bbab2d0c1c15c97e6aL181 dotnet/fsharp@5e17e31#r151844561 which, alas, is not true yet. With this PR we started to ship above modifications in the MDK: #7018 * Bump API snapshot submodule
1 parent 947e457 commit 3538148

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

external/api-snapshot

mcs/class/Microsoft.Build.Utilities/Microsoft.Build.Utilities/ToolTask.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ public abstract class ToolTask : Task
5959
bool typeLoadException;
6060
ManualResetEvent canceled;
6161

62+
/* dummy getter/setter for msbuild compability */
63+
public bool YieldDuringToolExecution
64+
{
65+
get;
66+
set;
67+
}
68+
6269
protected ToolTask ()
6370
: this (null, null)
6471
{

0 commit comments

Comments
 (0)