You've already forked linux-packaging-mono
Imported Upstream version 4.8.0.309
Former-commit-id: 5f9c6ae75f295e057a7d2971f3a6df4656fa8850
This commit is contained in:
parent
ee1447783b
commit
94b2861243
@ -3,6 +3,15 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//
|
||||
// ==--==
|
||||
|
||||
// There are cases where we have multiple assemblies that are going to import this file and
|
||||
// if they are going to also have InternalsVisibleTo between them, there will be a compiler warning
|
||||
// that the type is found both in the source and in a referenced assembly. The compiler will prefer
|
||||
// the version of the type defined in the source
|
||||
//
|
||||
// In order to disable the warning for this type we are disabling this warning for this entire file.
|
||||
#pragma warning disable 436
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
@ -167,3 +176,5 @@ namespace System
|
||||
static partial void PopulateDefaultValuesPartial(string platformIdentifier, string profile, int version);
|
||||
}
|
||||
}
|
||||
|
||||
#pragma warning restore 436
|
||||
|
Reference in New Issue
Block a user