From e0a651e9a643746c0eb83daa8b11cf4b81859a1c Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Tue, 7 Apr 2015 14:54:43 -0700 Subject: [PATCH] Add serviceable attribute to projects. aspnet/DNX#1600 --- .../Properties/AssemblyInfo.cs | 6 ++++++ .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 6 ++++++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/Microsoft.AspNet.WebSockets.Client/Properties/AssemblyInfo.cs create mode 100644 src/Microsoft.AspNet.WebSockets.Server/Properties/AssemblyInfo.cs diff --git a/src/Microsoft.AspNet.WebSockets.Client/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.WebSockets.Client/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..f5c6f4a83a --- /dev/null +++ b/src/Microsoft.AspNet.WebSockets.Client/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.WebSockets.Protocol/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.WebSockets.Protocol/Properties/AssemblyInfo.cs index b8a0860d30..f2450e304f 100644 --- a/src/Microsoft.AspNet.WebSockets.Protocol/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.WebSockets.Protocol/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; @@ -34,3 +34,4 @@ using System.Runtime.InteropServices; // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyMetadata("Serviceable", "True")] diff --git a/src/Microsoft.AspNet.WebSockets.Server/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.WebSockets.Server/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..f5c6f4a83a --- /dev/null +++ b/src/Microsoft.AspNet.WebSockets.Server/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