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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEgor Bogatov <egorbo@gmail.com>2018-02-19 17:59:33 +0300
committerMarek Safar <marek.safar@gmail.com>2018-02-19 17:59:33 +0300
commitf6a6779ff5b909c15833e000ef4d7e549405e34d (patch)
treee830d6c429f26c8be9ff45df65696ee43e675afe /mcs/class/System.ComponentModel.Composition.4.5/src
parented9510696567d50b371fbe50731b8d7f2adc7d59 (diff)
[corlib] CoreRT System.Threading.Tasks (#6672)
Diffstat (limited to 'mcs/class/System.ComponentModel.Composition.4.5/src')
-rw-r--r--mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Hosting/ComposablePartCatalogCollection.cs1
-rw-r--r--mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Hosting/CompositionLock.cs1
-rw-r--r--mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/MetadataViewGenerator.cs1
3 files changed, 3 insertions, 0 deletions
diff --git a/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Hosting/ComposablePartCatalogCollection.cs b/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Hosting/ComposablePartCatalogCollection.cs
index 151162887fc..ad2c78f52d7 100644
--- a/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Hosting/ComposablePartCatalogCollection.cs
+++ b/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Hosting/ComposablePartCatalogCollection.cs
@@ -12,6 +12,7 @@ using System.Diagnostics;
using Microsoft.Internal;
using Microsoft.Internal.Collections;
using System.Collections;
+using Lock = Microsoft.Internal.Lock;
namespace System.ComponentModel.Composition.Hosting
{
diff --git a/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Hosting/CompositionLock.cs b/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Hosting/CompositionLock.cs
index 4edf3974184..55a5007e3ef 100644
--- a/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Hosting/CompositionLock.cs
+++ b/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Hosting/CompositionLock.cs
@@ -11,6 +11,7 @@ using System.Runtime.CompilerServices;
using Microsoft.Internal;
using Microsoft.Internal.Collections;
using System.Threading;
+using Lock = Microsoft.Internal.Lock;
namespace System.ComponentModel.Composition.Hosting
{
diff --git a/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/MetadataViewGenerator.cs b/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/MetadataViewGenerator.cs
index 28c8a94840b..c05881e1a79 100644
--- a/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/MetadataViewGenerator.cs
+++ b/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/MetadataViewGenerator.cs
@@ -13,6 +13,7 @@ using Microsoft.Internal;
using System.Reflection.Emit;
using System.Collections;
using System.Security;
+using Lock = Microsoft.Internal.Lock;
namespace System.ComponentModel.Composition
{