From b652ca3332cb0c8f3a368061433851bb9f104960 Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Tue, 7 Apr 2015 14:46:20 -0700 Subject: [PATCH] Add serviceable attribute to projects. aspnet/DNX#1600 --- .../Properties/AssemblyInfo.cs | 6 ++++++ src/Microsoft.AspNet.Identity/Properties/AssemblyInfo.cs | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 src/Microsoft.AspNet.Identity.EntityFramework/Properties/AssemblyInfo.cs diff --git a/src/Microsoft.AspNet.Identity.EntityFramework/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.Identity.EntityFramework/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..f5c6f4a83a --- /dev/null +++ b/src/Microsoft.AspNet.Identity.EntityFramework/Properties/AssemblyInfo.cs @@ -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")] \ No newline at end of file diff --git a/src/Microsoft.AspNet.Identity/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.Identity/Properties/AssemblyInfo.cs index 20b5c479d6..a489048427 100644 --- a/src/Microsoft.AspNet.Identity/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.Identity/Properties/AssemblyInfo.cs @@ -1,9 +1,11 @@ // 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; using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("Microsoft.AspNet.Identity.Test")] [assembly: InternalsVisibleTo("Microsoft.AspNet.Identity.EntityFramework.Test")] [assembly: InternalsVisibleTo("Microsoft.AspNet.Identity.EntityFramework.InMemory.Test")] -[assembly: InternalsVisibleTo("Microsoft.AspNet.Identity.InMemory.Test")] \ No newline at end of file +[assembly: InternalsVisibleTo("Microsoft.AspNet.Identity.InMemory.Test")] +[assembly: AssemblyMetadata("Serviceable", "True")]