Repository: incubator-reef Updated Branches: refs/heads/master aa36ade1e -> c5f33b233
[REEF-159] Add dll signing for release builds JIRA REEF-159: https://issues.apache.org/jira/browse/REEF-159 This closes #92 Author: tmajest <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/9ef890fe Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/9ef890fe Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/9ef890fe Branch: refs/heads/master Commit: 9ef890fe246fc414f1c72172da8768c64f748d84 Parents: 6ce4f41 Author: tmajest <[email protected]> Authored: Tue Feb 24 12:38:42 2015 -0800 Committer: Julia Wang <[email protected]> Committed: Thu Feb 26 12:04:48 2015 -0800 ---------------------------------------------------------------------- lang/cs/build.props | 4 ++++ lang/cs/keyfile.snk | Bin 0 -> 596 bytes 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/9ef890fe/lang/cs/build.props ---------------------------------------------------------------------- diff --git a/lang/cs/build.props b/lang/cs/build.props index 2bf3cea..c2fcc90 100644 --- a/lang/cs/build.props +++ b/lang/cs/build.props @@ -47,6 +47,8 @@ under the License. </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <BuildPackage>true</BuildPackage> + <SignAssembly>true</SignAssembly> + <AssemblyOriginatorKeyFile>$(SolutionDir)\keyfile.snk</AssemblyOriginatorKeyFile> <PlatformTarget>AnyCPU</PlatformTarget> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> @@ -57,6 +59,8 @@ under the License. </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> <BuildPackage>true</BuildPackage> + <SignAssembly>true</SignAssembly> + <AssemblyOriginatorKeyFile>$(SolutionDir)\keyfile.snk</AssemblyOriginatorKeyFile> <PlatformTarget>AnyCPU</PlatformTarget> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/9ef890fe/lang/cs/keyfile.snk ---------------------------------------------------------------------- diff --git a/lang/cs/keyfile.snk b/lang/cs/keyfile.snk new file mode 100644 index 0000000..9edf712 Binary files /dev/null and b/lang/cs/keyfile.snk differ
