Commit e94bdd93 authored by Jon Skeet's avatar Jon Skeet

Allow partially-trusted callers again.

Fixes issue #552. (And yay, it looks like our build profile supports this...)
parent bf1cc921
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
using System.Reflection; using System.Reflection;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Security;
// General Information about an assembly is controlled through the following // General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information // set of attributes. Change these attribute values to modify the information
...@@ -45,6 +46,7 @@ using System.Runtime.CompilerServices; ...@@ -45,6 +46,7 @@ using System.Runtime.CompilerServices;
[assembly: AssemblyCopyright("Copyright © 2015")] [assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")] [assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]
[assembly: AllowPartiallyTrustedCallers]
#if SIGNED #if SIGNED
[assembly: InternalsVisibleTo("Google.Protobuf.Test, PublicKey=" + [assembly: InternalsVisibleTo("Google.Protobuf.Test, PublicKey=" +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment