Repository: reef Updated Branches: refs/heads/master c0e191a77 -> 0b91e52a4
[REEF-1190] Fix mismatched AssemblyTitle and AssemblyProduct info JIRA: [REEF-1190](https://issues.apache.org/jira/browse/REEF-1190) Pull request: This closes #829 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/0b91e52a Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/0b91e52a Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/0b91e52a Branch: refs/heads/master Commit: 0b91e52a4b0574d89cc167e0cba217d9ea4502d0 Parents: c0e191a Author: Dongjoon Hyun <[email protected]> Authored: Fri Feb 5 12:03:32 2016 -0800 Committer: Markus Weimer <[email protected]> Committed: Fri Feb 5 14:21:56 2016 -0800 ---------------------------------------------------------------------- .../Properties/AssemblyInfo.cs | 24 ++------------------ .../Properties/AssemblyInfo.cs | 24 ++------------------ 2 files changed, 4 insertions(+), 44 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/0b91e52a/lang/cs/Org.Apache.REEF.Evaluator/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Evaluator/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Evaluator/Properties/AssemblyInfo.cs index 7ea120c..147254d 100644 --- a/lang/cs/Org.Apache.REEF.Evaluator/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Evaluator/Properties/AssemblyInfo.cs @@ -19,36 +19,16 @@ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Evaluator")] +[assembly: AssemblyTitle("Org.Apache.REEF.Evaluator")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Evaluator")] +[assembly: AssemblyProduct("Org.Apache.REEF.Evaluator")] [assembly: AssemblyCopyright("Copyright © 2016")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("a64dc535-9b1e-41a4-8303-117f8b28c8c0")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.14.0.0")] [assembly: AssemblyFileVersion("0.14.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/0b91e52a/lang/cs/Org.Apache.REEF.Network.Examples.Client/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Network.Examples.Client/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Network.Examples.Client/Properties/AssemblyInfo.cs index f45fc60..56b1691 100644 --- a/lang/cs/Org.Apache.REEF.Network.Examples.Client/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Network.Examples.Client/Properties/AssemblyInfo.cs @@ -19,35 +19,15 @@ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Org.Apache.REEF.Tests.Yarn")] +[assembly: AssemblyTitle("Org.Apache.REEF.Network.Examples.Client")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Org.Apache.REEF.Tests.Yarn")] +[assembly: AssemblyProduct("Org.Apache.REEF.Network.Examples.Client")] [assembly: AssemblyCopyright("Copyright © 2016")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("22ae839f-8ae7-46ac-b4bd-6d0d32213d83")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.14.0.0")] [assembly: AssemblyFileVersion("0.14.0.0")]
