Skip to content
This repository was archived by the owner on Oct 17, 2018. It is now read-only.

Commit 8b9b809

Browse files
author
N. Taylor Mullen
committed
Add serviceable attribute to projects.
aspnet/dnx#1600
1 parent 19567ad commit 8b9b809

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-5
lines changed

src/Microsoft.AspNet.Cryptography.Internal/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
1+
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5+
using System.Reflection;
56
using System.Runtime.CompilerServices;
67
using System.Runtime.InteropServices;
78

@@ -14,3 +15,4 @@
1415
[assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection")]
1516
[assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Interfaces.Test")]
1617
[assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Test")]
18+
[assembly: AssemblyMetadata("Serviceable", "True")]
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
1+
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5+
using System.Reflection;
56
using System.Runtime.CompilerServices;
67

78
[assembly: InternalsVisibleTo("Microsoft.AspNet.Cryptography.KeyDerivation.Test")]
9+
[assembly: AssemblyMetadata("Serviceable", "True")]
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
1+
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5+
using System.Reflection;
56
using System.Runtime.CompilerServices;
67

78
[assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Extensions.Test")]
9+
[assembly: AssemblyMetadata("Serviceable", "True")]
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
1+
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5+
using System.Reflection;
56
using System.Runtime.CompilerServices;
67

78
// for unit testing
89
[assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Interfaces.Test")]
10+
[assembly: AssemblyMetadata("Serviceable", "True")]
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+
4+
using System.Reflection;
5+
6+
[assembly: AssemblyMetadata("Serviceable", "True")]
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
1+
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5+
using System.Reflection;
56
using System.Runtime.CompilerServices;
67

78
// for unit testing
89
[assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Test")]
910
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
11+
[assembly: AssemblyMetadata("Serviceable", "True")]

0 commit comments

Comments
 (0)