Add serviceable attribute to projects.

aspnet/DNX#1600
This commit is contained in:
N. Taylor Mullen 2015-04-07 14:45:23 -07:00
parent 8be4a1a0af
commit 40490593ce
3 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,6 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Reflection;
[assembly: AssemblyMetadata("Serviceable", "True")]

View File

@ -0,0 +1,6 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Reflection;
[assembly: AssemblyMetadata("Serviceable", "True")]

View File

@ -35,4 +35,5 @@ using System.Runtime.InteropServices;
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("12A3EDBB-65B6-4D47-98FC-2B80CEC71E51")]
[assembly: InternalsVisibleTo("Microsoft.AspNet.TestHost.Tests")]
[assembly: InternalsVisibleTo("Microsoft.AspNet.TestHost.Tests")]
[assembly: AssemblyMetadata("Serviceable", "True")]