Repository: incubator-reef Updated Branches: refs/heads/master b0c38dff9 -> b6b9e39bb
[REEF-457] Add public key to InternalsVisibleTo declarations This PR is to add public key in `InternalsVisibleTo` declarations. It is required by release build as DLLs are signed. JIRA: [REEF-457](https://issues.apache.org/jira/browse/REEF-457) Pull Request: This closes #283 Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/b6b9e39b Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/b6b9e39b Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/b6b9e39b Branch: refs/heads/master Commit: b6b9e39bb635b0e43b6d5adecf8cc9ac31a3748d Parents: b0c38df Author: Julia Wang <[email protected]> Authored: Tue Jul 7 15:27:55 2015 -0700 Committer: Markus Weimer <[email protected]> Committed: Wed Jul 8 09:07:24 2015 -0700 ---------------------------------------------------------------------- lang/cs/Org.Apache.REEF.Common/Properties/AssemblyInfo.cs | 6 +++++- lang/cs/Org.Apache.REEF.IMRU/Properties/AssemblyInfo.cs | 6 +++++- lang/cs/Org.Apache.REEF.Network/Properties/AssemblyInfo.cs | 6 +++++- lang/cs/Org.Apache.REEF.Tang/Properties/AssemblyInfo.cs | 6 +++++- lang/cs/Org.Apache.REEF.Wake/Properties/AssemblyInfo.cs | 6 +++++- 5 files changed, 25 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/b6b9e39b/lang/cs/Org.Apache.REEF.Common/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Common/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Common/Properties/AssemblyInfo.cs index b9409ce..46ff36e 100644 --- a/lang/cs/Org.Apache.REEF.Common/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Common/Properties/AssemblyInfo.cs @@ -55,4 +55,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyFileVersion("0.12.0.0")] // Allow the tests access to `internal` APIs -[assembly: InternalsVisibleTo("Org.Apache.REEF.Common.Tests")] +[assembly: InternalsVisibleTo("Org.Apache.REEF.Common.Tests, publickey=" + + "00240000048000009400000006020000002400005253413100040000010001005df3e621d886a9" + + "9c03469d0f93a9f5d45aa2c883f50cd158759e93673f759ec4657fd84cc79d2db38ef1a2d914cc" + + "b7c717846a897e11dd22eb260a7ce2da2dccf0263ea63e2b3f7dac24f28882aa568ef544341d17" + + "618392a1095f4049ad079d4f4f0b429bb535699155fd6a7652ec7d6c1f1ba2b560f11ef3a86b5945d288cf")] \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/b6b9e39b/lang/cs/Org.Apache.REEF.IMRU/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IMRU/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.IMRU/Properties/AssemblyInfo.cs index 0b49374..2735ea9 100644 --- a/lang/cs/Org.Apache.REEF.IMRU/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.IMRU/Properties/AssemblyInfo.cs @@ -33,4 +33,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyVersion("0.12.0.0")] [assembly: AssemblyFileVersion("0.12.0.0")] // Allow the tests project access to `internal` APIs -[assembly: InternalsVisibleTo("Org.Apache.REEF.IMRU.Tests")] \ No newline at end of file +[assembly: InternalsVisibleTo("Org.Apache.REEF.IMRU.Tests, publickey=" + + "00240000048000009400000006020000002400005253413100040000010001005df3e621d886a9" + + "9c03469d0f93a9f5d45aa2c883f50cd158759e93673f759ec4657fd84cc79d2db38ef1a2d914cc" + + "b7c717846a897e11dd22eb260a7ce2da2dccf0263ea63e2b3f7dac24f28882aa568ef544341d17" + + "618392a1095f4049ad079d4f4f0b429bb535699155fd6a7652ec7d6c1f1ba2b560f11ef3a86b5945d288cf")] \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/b6b9e39b/lang/cs/Org.Apache.REEF.Network/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Network/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Network/Properties/AssemblyInfo.cs index 2c7182d..e1cf5f3 100644 --- a/lang/cs/Org.Apache.REEF.Network/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Network/Properties/AssemblyInfo.cs @@ -55,4 +55,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyFileVersion("0.12.0.0")] // Allow the tests access to `internal` APIs -[assembly: InternalsVisibleTo("Org.Apache.REEF.Network.Tests")] \ No newline at end of file +[assembly: InternalsVisibleTo("Org.Apache.REEF.Network.Tests, publickey=" + + "00240000048000009400000006020000002400005253413100040000010001005df3e621d886a9" + + "9c03469d0f93a9f5d45aa2c883f50cd158759e93673f759ec4657fd84cc79d2db38ef1a2d914cc" + + "b7c717846a897e11dd22eb260a7ce2da2dccf0263ea63e2b3f7dac24f28882aa568ef544341d17" + + "618392a1095f4049ad079d4f4f0b429bb535699155fd6a7652ec7d6c1f1ba2b560f11ef3a86b5945d288cf")] \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/b6b9e39b/lang/cs/Org.Apache.REEF.Tang/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tang/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Tang/Properties/AssemblyInfo.cs index 2982d40..7d1fbe9 100644 --- a/lang/cs/Org.Apache.REEF.Tang/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Tang/Properties/AssemblyInfo.cs @@ -55,4 +55,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyFileVersion("0.12.0.0")] // Allow the tests access to `internal` APIs -[assembly: InternalsVisibleTo("Org.Apache.REEF.Tang.Tests")] +[assembly: InternalsVisibleTo("Org.Apache.REEF.Tang.Tests, publickey=" + + "00240000048000009400000006020000002400005253413100040000010001005df3e621d886a9" + + "9c03469d0f93a9f5d45aa2c883f50cd158759e93673f759ec4657fd84cc79d2db38ef1a2d914cc" + + "b7c717846a897e11dd22eb260a7ce2da2dccf0263ea63e2b3f7dac24f28882aa568ef544341d17" + + "618392a1095f4049ad079d4f4f0b429bb535699155fd6a7652ec7d6c1f1ba2b560f11ef3a86b5945d288cf")] \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/b6b9e39b/lang/cs/Org.Apache.REEF.Wake/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Wake/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Wake/Properties/AssemblyInfo.cs index 41d8e33..3750adf 100644 --- a/lang/cs/Org.Apache.REEF.Wake/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Wake/Properties/AssemblyInfo.cs @@ -55,4 +55,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyFileVersion("0.12.0.0")] // Allow the tests access to `internal` APIs -[assembly: InternalsVisibleTo("Org.Apache.REEF.Wake.Tests")] +[assembly: InternalsVisibleTo("Org.Apache.REEF.Wake.Tests, publickey=" + + "00240000048000009400000006020000002400005253413100040000010001005df3e621d886a9" + + "9c03469d0f93a9f5d45aa2c883f50cd158759e93673f759ec4657fd84cc79d2db38ef1a2d914cc" + + "b7c717846a897e11dd22eb260a7ce2da2dccf0263ea63e2b3f7dac24f28882aa568ef544341d17" + + "618392a1095f4049ad079d4f4f0b429bb535699155fd6a7652ec7d6c1f1ba2b560f11ef3a86b5945d288cf")] \ No newline at end of file
