Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWes Haggard <Wes.Haggard@microsoft.com>2017-02-03 21:48:34 +0300
committerWes Haggard <Wes.Haggard@microsoft.com>2017-02-03 23:47:31 +0300
commitd902b1c7b502635f644781fce474424c1cb3ad5a (patch)
treed836128dbf9823a59910dfe73abefd88c5510805 /src/shims/shims.proj
parent0620fb036f0faa2346dbddc274148a187c0265b1 (diff)
Update NS2.0 Apicompat baseline
Update the NS2.0 package to fix a couple issues in the shims. Added more shims to the list we need for .NET Core compat with NS2.0 The remaining System.Transactions issues will be fixed once we rename that assembly as part of https://github.com/dotnet/corefx/issues/15259
Diffstat (limited to 'src/shims/shims.proj')
-rw-r--r--src/shims/shims.proj5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/shims/shims.proj b/src/shims/shims.proj
index 626eb1847a..a7ab07f967 100644
--- a/src/shims/shims.proj
+++ b/src/shims/shims.proj
@@ -18,7 +18,10 @@
<NetFxReference Include="mscorlib" />
<NetFxReference Include="System" />
<NetFxReference Include="System.Core" />
+ <NetFxReference Include="System.ComponentModel.Composition" />
+ <NetFxReference Include="System.Data" />
<NetFxReference Include="System.Drawing" />
+ <NetFxReference Include="System.IO.Compression.FileSystem" />
<NetFxReference Include="System.Numerics" />
<NetFxReference Include="System.Runtime.Serialization" />
<NetFxReference Include="System.Web" />
@@ -107,7 +110,7 @@
<MakeDir Directories="$(IntermediateOutputPath)" />
<WriteLinesToFile File="$(ApiCompatResponseFile)" Lines="$(ApiCompatArgs)" Overwrite="true" />
- <Exec Command="$(ApiCompatCmd) &quot;$(NetFxRefPath)&quot; @&quot;$(ApiCompatResponseFile)&quot; &gt; $(ApiCompatBaselineFile)"
+ <Exec Command="$(ApiCompatCmd) &quot;@(NetFxContracts)&quot; @&quot;$(ApiCompatResponseFile)&quot; &gt; $(ApiCompatBaselineFile)"
CustomErrorRegularExpression="^[a-zA-Z]+ :"
StandardOutputImportance="Low"
IgnoreExitCode="true"