diff --git a/Directory.Build.props b/Directory.Build.props
index 986ca8080e66..20f6a94facb9 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -18,7 +18,7 @@
true
$(MSBuildThisFileDirectory)artifacts\toolset\Common\
- true
+ $([System.Text.RegularExpressions.Regex]::IsMatch($(MSBuildProjectDirectory), 'src%24'))
@@ -167,7 +167,8 @@
Library
Open
- true
+ $(IsSourceProject)
+ $(IsSourceProject)
$(RepositoryEngineeringDir)DefaultGenApiDocIds.txt
true
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 7e3774e7cb0c..a2cd2fb0468b 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -46,9 +46,9 @@
https://github.com/dotnet/arcade
a7a250e9c13147134543c35fef2fb81f19592edf
-
+
https://github.com/dotnet/arcade
- 1b8589bbf53b9a5e819460798eff59830f39a3be
+ c31fac9f6899094226cb5cd77c85b8f60ecafa3d
https://github.com/dotnet/arcade
diff --git a/eng/Versions.props b/eng/Versions.props
index 8ace06ec12a8..7048c7f59e43 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -23,7 +23,7 @@
- 1.0.0-beta.19229.8
+ 1.0.0-beta.19256.12
1.0.0-beta.19254.1
1.0.0-beta.19254.1
1.0.0-beta.19254.1
diff --git a/eng/references.targets b/eng/references.targets
index de6eccf63382..f559f1f8adeb 100644
--- a/eng/references.targets
+++ b/eng/references.targets
@@ -1,8 +1,8 @@
- $(RefPath)
- $(ContractOutputPath)
- $(AssemblySearchPaths);$(ContractOutputPath);{RawFileName}
+ $(RefPath)
+ $(RefPath)
+ $(AssemblySearchPaths);$(RefPath);{RawFileName}
<_FindDependencies>false
+ false
@@ -17,7 +20,13 @@
-
-
+
+
+
+ False
+
\ No newline at end of file
diff --git a/src/CoreFx.Private.TestUtilities/ref/CoreFx.Private.TestUtilities.cs b/src/CoreFx.Private.TestUtilities/ref/CoreFx.Private.TestUtilities.cs
index ff5dc9cf1e06..cf5b3ec4030d 100644
--- a/src/CoreFx.Private.TestUtilities/ref/CoreFx.Private.TestUtilities.cs
+++ b/src/CoreFx.Private.TestUtilities/ref/CoreFx.Private.TestUtilities.cs
@@ -27,6 +27,7 @@ public static void ThrowsAny(System.A
public static void ThrowsAny(System.Action action) where TFirstExceptionType : System.Exception where TSecondExceptionType : System.Exception where TThirdExceptionType : System.Exception { }
public static System.Threading.Tasks.Task ThrowsAsync(string paramName, System.Func testCode) where T : System.ArgumentException { throw null; }
public static void ThrowsIf(bool condition, System.Action action) where T : System.Exception { }
+ public static T Throws(System.Action action) where T : System.Exception { throw null; }
public static void Throws(System.Action action, string message) where T : System.Exception { }
public static T Throws(string paramName, System.Action action) where T : System.ArgumentException { throw null; }
public static T Throws(string paramName, System.Func