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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@xamarin.com>2014-04-04 15:56:04 +0400
committerLluis Sanchez <lluis@xamarin.com>2014-04-04 15:56:04 +0400
commit78556a5e0a71f60ada8baf3d68569dac3ea52b9b (patch)
treeb7d8b50065ad06ed6bb4c50ed608cc7ce4a66332 /main/src/core/MonoDevelop.Core
parentd4312cc8054188bd762f8f8babc3456c0f8eb9b6 (diff)
[Core] Register some known build actions
Diffstat (limited to 'main/src/core/MonoDevelop.Core')
-rw-r--r--main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectHandler.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectHandler.cs b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectHandler.cs
index 3aa93435ad..cabee1e34b 100644
--- a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectHandler.cs
+++ b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/MSBuildProjectHandler.cs
@@ -1975,8 +1975,10 @@ namespace MonoDevelop.Projects.Formats.MSBuild
// Items generated by VS but which MD is not using and should be ignored
internal static readonly IList<string> UnsupportedItems = new string[] {
- "BootstrapperFile", "AppDesigner", "WebReferences", "WebReferenceUrl", "Service",
- "ProjectReference", "Reference" // Reference elements are included here because they are special-cased for DotNetProject, and they are unsupported in other types of projects
+ "BootstrapperFile", "AppDesigner", "WebReferences", "WebReferenceUrl", "Service",
+ "ProjectReference", "Reference", // Reference elements are included here because they are special-cased for DotNetProject, and they are unsupported in other types of projects
+ "InternalsVisibleTo",
+ "InternalsVisibleToTest"
};
}