[REEF-1673] Unify AssemblyInfo information across projects This change: * Creates SharedAssemblyInfo.cs file with common information * Uses it in all projects * Updates release script accordingly * Replaces relative path ..\ with SolutionDir variable in .csproj files
JIRA: [REEF-1673](https://issues.apache.org/jira/browse/REEF-1673) Pull request: This closes #1184 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/b0a47f9b Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/b0a47f9b Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/b0a47f9b Branch: refs/heads/master Commit: b0a47f9b707f044a5a496266255826113d29cf61 Parents: 1fd4f26 Author: Mariia Mykhailova <[email protected]> Authored: Thu Nov 17 16:41:14 2016 -0800 Committer: Julia Wang <[email protected]> Committed: Mon Nov 21 14:04:37 2016 -0800 ---------------------------------------------------------------------- dev/change_version.py | 6 ++-- .../Org.Apache.REEF.All.csproj | 23 +++++++------ .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Client.Tests.csproj | 7 ++-- .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Client.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Common.Tests.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Common.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Driver.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Evaluator.Tests.csproj | 5 ++- .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Evaluator.csproj | 5 ++- .../Properties/AssemblyInfo.cs | 9 +---- .../Org.Apache.REEF.Examples.AllHandlers.csproj | 5 ++- .../Properties/AssemblyInfo.cs | 23 ------------- ...rg.Apache.REEF.Examples.DriverRestart.csproj | 5 ++- .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Examples.HelloREEF.csproj | 7 ++-- .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Examples.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.IMRU.Examples.csproj | 5 ++- .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.IMRU.Tests.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 9 +---- .../Org.Apache.REEF.IMRU.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 9 +---- .../Org.Apache.REEF.IO.TestClient.csproj | 5 ++- .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.IO.Tests.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 9 +---- .../Org.Apache.REEF.IO.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 9 +---- ...g.Apache.REEF.Network.Examples.Client.csproj | 5 ++- .../Properties/AssemblyInfo.cs | 9 +---- .../Org.Apache.REEF.Network.Examples.csproj | 5 ++- .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Network.Tests.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Network.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Tang.Examples.csproj | 5 ++- .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Tang.Tests.csproj | 5 ++- .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Tang.Tools.csproj | 7 ++-- .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Tang.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Tests.csproj | 5 ++- .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.Reef.Utilities.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Wake.Tests.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 23 ------------- .../Org.Apache.REEF.Wake.csproj | 3 ++ .../Properties/AssemblyInfo.cs | 23 ------------- lang/cs/Org.Apache.REEF.sln | Bin 34618 -> 35130 bytes lang/cs/SharedAssemblyInfo.cs | 33 +++++++++++++++++++ 63 files changed, 159 insertions(+), 630 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/dev/change_version.py ---------------------------------------------------------------------- diff --git a/dev/change_version.py b/dev/change_version.py index 3d1eb0c..e8dcd84 100644 --- a/dev/change_version.py +++ b/dev/change_version.py @@ -118,7 +118,7 @@ def change_constants_cs(file, new_version): f.close() """ -Change version in every AssemblyInfo.cs and AssemblyInfo.cpp +Change version in SharedAssemblyInfo.cs and AssemblyInfo.cpp """ def change_assembly_info_cs(file, new_version): changed_str = "" @@ -250,7 +250,7 @@ def change_project_number_Doxyfile(file, new_version): """ -Change version of every pom.xml, every AssemblyInfo.cs, +Change version of every pom.xml, SharedAssemblyInfo.cs, AssemblyInfo.cpp, run.cmd and Resources.xml """ def change_version(reef_home, new_version, pom_only): @@ -265,7 +265,7 @@ def change_version(reef_home, new_version, pom_only): if "pom.xml" in fi: print fi change_pom(fi, new_version) - if "AssemblyInfo.cs" in fi: + if "SharedAssemblyInfo.cs" in fi: print fi change_assembly_info_cs(fi, new_version) http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.All/Org.Apache.REEF.All.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.All/Org.Apache.REEF.All.csproj b/lang/cs/Org.Apache.REEF.All/Org.Apache.REEF.All.csproj index d79748a..2236bff 100644 --- a/lang/cs/Org.Apache.REEF.All/Org.Apache.REEF.All.csproj +++ b/lang/cs/Org.Apache.REEF.All/Org.Apache.REEF.All.csproj @@ -34,42 +34,45 @@ under the License. <Reference Include="System.Core" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> <ItemGroup> - <ProjectReference Include="..\Org.Apache.REEF.Client\Org.Apache.REEF.Client.csproj"> + <ProjectReference Include="$(SolutionDir)\Org.Apache.REEF.Client\Org.Apache.REEF.Client.csproj"> <Project>{5094c35b-4fdb-4322-ac05-45d684501cbf}</Project> <Name>Org.Apache.REEF.Client</Name> </ProjectReference> - <ProjectReference Include="..\Org.Apache.REEF.Common\Org.Apache.REEF.Common.csproj"> + <ProjectReference Include="$(SolutionDir)\Org.Apache.REEF.Common\Org.Apache.REEF.Common.csproj"> <Project>{545a0582-4105-44ce-b99c-b1379514a630}</Project> <Name>Org.Apache.REEF.Common</Name> </ProjectReference> - <ProjectReference Include="..\Org.Apache.REEF.Driver\Org.Apache.REEF.Driver.csproj"> + <ProjectReference Include="$(SolutionDir)\Org.Apache.REEF.Driver\Org.Apache.REEF.Driver.csproj"> <Project>{a6baa2a7-f52f-4329-884e-1bcf711d6805}</Project> <Name>Org.Apache.REEF.Driver</Name> </ProjectReference> - <ProjectReference Include="..\Org.Apache.REEF.Evaluator\Org.Apache.REEF.Evaluator.csproj"> + <ProjectReference Include="$(SolutionDir)\Org.Apache.REEF.Evaluator\Org.Apache.REEF.Evaluator.csproj"> <Project>{1b983182-9c30-464c-948d-f87eb93a8240}</Project> <Name>Org.Apache.REEF.Evaluator</Name> </ProjectReference> - <ProjectReference Include="..\Org.Apache.REEF.Examples\Org.Apache.REEF.Examples.csproj"> + <ProjectReference Include="$(SolutionDir)\Org.Apache.REEF.Examples\Org.Apache.REEF.Examples.csproj"> <Project>{75503f90-7b82-4762-9997-94b5c68f15db}</Project> <Name>Org.Apache.REEF.Examples</Name> </ProjectReference> - <ProjectReference Include="..\Org.Apache.REEF.Network\Org.Apache.REEF.Network.csproj"> + <ProjectReference Include="$(SolutionDir)\Org.Apache.REEF.Network\Org.Apache.REEF.Network.csproj"> <Project>{883ce800-6a6a-4e0a-b7fe-c054f4f2c1dc}</Project> <Name>Org.Apache.REEF.Network</Name> </ProjectReference> - <ProjectReference Include="..\Org.Apache.REEF.Tang\Org.Apache.REEF.Tang.csproj"> + <ProjectReference Include="$(SolutionDir)\Org.Apache.REEF.Tang\Org.Apache.REEF.Tang.csproj"> <Project>{97dbb573-3994-417a-9f69-ffa25f00d2a6}</Project> <Name>Org.Apache.REEF.Tang</Name> </ProjectReference> - <ProjectReference Include="..\Org.Apache.REEF.Utilities\Org.Apache.REEF.Utilities.csproj"> + <ProjectReference Include="$(SolutionDir)\Org.Apache.REEF.Utilities\Org.Apache.REEF.Utilities.csproj"> <Project>{79e7f89a-1dfb-45e1-8d43-d71a954aeb98}</Project> <Name>Org.Apache.REEF.Utilities</Name> </ProjectReference> - <ProjectReference Include="..\Org.Apache.REEF.Wake\Org.Apache.REEF.Wake.csproj"> + <ProjectReference Include="$(SolutionDir)\Org.Apache.REEF.Wake\Org.Apache.REEF.Wake.csproj"> <Project>{cdfb3464-4041-42b1-9271-83af24cd5008}</Project> <Name>Org.Apache.REEF.Wake</Name> </ProjectReference> @@ -80,4 +83,4 @@ under the License. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" /> <Import Project="$(PackagesDir)\StyleCop.MSBuild.$(StyleCopVersion)\build\StyleCop.MSBuild.Targets" Condition="Exists('$(PackagesDir)\StyleCop.MSBuild.$(StyleCopVersion)\build\StyleCop.MSBuild.Targets')" /> -</Project> +</Project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.All/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.All/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.All/Properties/AssemblyInfo.cs index 67faf6a..888cc62 100644 --- a/lang/cs/Org.Apache.REEF.All/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.All/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.All")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.All")] -[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("def59cbf-1539-414c-a518-486d1553077c")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Client.Tests/Org.Apache.REEF.Client.Tests.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Client.Tests/Org.Apache.REEF.Client.Tests.csproj b/lang/cs/Org.Apache.REEF.Client.Tests/Org.Apache.REEF.Client.Tests.csproj index 681d2ef..956453b 100644 --- a/lang/cs/Org.Apache.REEF.Client.Tests/Org.Apache.REEF.Client.Tests.csproj +++ b/lang/cs/Org.Apache.REEF.Client.Tests/Org.Apache.REEF.Client.Tests.csproj @@ -48,6 +48,9 @@ under the License. <Reference Include="System.ServiceProcess" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="HDInsightYarnClientTests.cs" /> <Compile Include="JobRequestBuilderTests.cs" /> <Compile Include="JobResourceUploaderTests.cs" /> @@ -78,11 +81,11 @@ under the License. <Project>{79E7F89A-1DFB-45E1-8D43-D71A954AEB98}</Project> <Name>Org.Apache.REEF.Utilities</Name> </ProjectReference> - <ProjectReference Include="..\Org.Apache.REEF.Driver\Org.Apache.REEF.Driver.csproj"> + <ProjectReference Include="$(SolutionDir)\Org.Apache.REEF.Driver\Org.Apache.REEF.Driver.csproj"> <Project>{A6BAA2A7-F52F-4329-884E-1BCF711D6805}</Project> <Name>Org.Apache.REEF.Driver</Name> </ProjectReference> - <ProjectReference Include="..\Org.Apache.REEF.Wake\Org.Apache.REEF.Wake.csproj"> + <ProjectReference Include="$(SolutionDir)\Org.Apache.REEF.Wake\Org.Apache.REEF.Wake.csproj"> <Project>{cdfb3464-4041-42b1-9271-83af24cd5008}</Project> <Name>Org.Apache.REEF.Wake</Name> </ProjectReference> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Client.Tests/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Client.Tests/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Client.Tests/Properties/AssemblyInfo.cs index d08115f..fe261bb 100644 --- a/lang/cs/Org.Apache.REEF.Client.Tests/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Client.Tests/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Client.Tests")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Client.Tests")] -[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("0f573fbb-22d7-45e4-a7e4-2b29029f3148")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Client/Org.Apache.REEF.Client.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Client/Org.Apache.REEF.Client.csproj b/lang/cs/Org.Apache.REEF.Client/Org.Apache.REEF.Client.csproj index be84052..20c6d5f 100644 --- a/lang/cs/Org.Apache.REEF.Client/Org.Apache.REEF.Client.csproj +++ b/lang/cs/Org.Apache.REEF.Client/Org.Apache.REEF.Client.csproj @@ -59,6 +59,9 @@ under the License. <Reference Include="System.Runtime.Serialization" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="API\AppParameters.cs" /> <Compile Include="API\AppParametersBuilder.cs" /> <Compile Include="API\ClientFactory.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Client/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Client/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Client/Properties/AssemblyInfo.cs index e381a14..e7150cb 100644 --- a/lang/cs/Org.Apache.REEF.Client/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Client/Properties/AssemblyInfo.cs @@ -24,34 +24,11 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Client")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.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("8717944c-5e99-4f95-a916-5ca3c3f8e697")] -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] - [assembly: InternalsVisibleTo("Org.Apache.REEF.Tests, publickey=" + "00240000048000009400000006020000002400005253413100040000010001005df3e621d886a9" + "9c03469d0f93a9f5d45aa2c883f50cd158759e93673f759ec4657fd84cc79d2db38ef1a2d914cc" + http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Common.Tests/Org.Apache.REEF.Common.Tests.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Common.Tests/Org.Apache.REEF.Common.Tests.csproj b/lang/cs/Org.Apache.REEF.Common.Tests/Org.Apache.REEF.Common.Tests.csproj index f339a59..b169990 100644 --- a/lang/cs/Org.Apache.REEF.Common.Tests/Org.Apache.REEF.Common.Tests.csproj +++ b/lang/cs/Org.Apache.REEF.Common.Tests/Org.Apache.REEF.Common.Tests.csproj @@ -43,6 +43,9 @@ under the License. <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="Metrics\DefaultMetricSourceTests.cs" /> <Compile Include="Metrics\ImmutableMetricTest.cs" /> <Compile Include="Metrics\MetricTestUtils.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Common.Tests/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Common.Tests/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Common.Tests/Properties/AssemblyInfo.cs index 13333a6..06bc60f 100644 --- a/lang/cs/Org.Apache.REEF.Common.Tests/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Common.Tests/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Common.Tests")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Common.Tests")] -[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("56634b2e-ff34-4c06-99f4-3c1388093e59")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Common/Org.Apache.REEF.Common.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Common/Org.Apache.REEF.Common.csproj b/lang/cs/Org.Apache.REEF.Common/Org.Apache.REEF.Common.csproj index 492ab5c..71c16bf 100644 --- a/lang/cs/Org.Apache.REEF.Common/Org.Apache.REEF.Common.csproj +++ b/lang/cs/Org.Apache.REEF.Common/Org.Apache.REEF.Common.csproj @@ -51,6 +51,9 @@ under the License. <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="Api\AbstractFailure.cs" /> <Compile Include="Api\IAbstractFailure.cs" /> <Compile Include="Api\IFailure.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/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 1797646..4a8c546 100644 --- a/lang/cs/Org.Apache.REEF.Common/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Common/Properties/AssemblyInfo.cs @@ -24,34 +24,11 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Common")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Common")] -[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("a810ee4a-fe13-4536-9e9c-5275b16e0842")] -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] - // Common and Evaluator share APIs that should not be exposed to the user [assembly: InternalsVisibleTo("Org.Apache.REEF.Evaluator, publickey=" + "00240000048000009400000006020000002400005253413100040000010001005df3e621d886a9" + http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Driver/Org.Apache.REEF.Driver.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Driver/Org.Apache.REEF.Driver.csproj b/lang/cs/Org.Apache.REEF.Driver/Org.Apache.REEF.Driver.csproj index 09f5948..61955b9 100644 --- a/lang/cs/Org.Apache.REEF.Driver/Org.Apache.REEF.Driver.csproj +++ b/lang/cs/Org.Apache.REEF.Driver/Org.Apache.REEF.Driver.csproj @@ -41,6 +41,9 @@ under the License. <Reference Include="System.Runtime.Serialization" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="Bridge\Avro\DefinedRuntimes.cs" /> <Compile Include="Bridge\Avro\DefinedRuntimesSerializer.cs" /> <Compile Include="Bridge\BridgeConfigurationProvider.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Driver/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Driver/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Driver/Properties/AssemblyInfo.cs index a6fd33a..d21e703 100644 --- a/lang/cs/Org.Apache.REEF.Driver/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Driver/Properties/AssemblyInfo.cs @@ -24,34 +24,11 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Driver")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Driver")] -[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("81ea2648-b341-4852-93b0-806da615c6b8")] -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] - // Allow the bridge access to `internal` APIs [assembly: InternalsVisibleTo("Org.Apache.REEF.Bridge, publickey=" + "00240000048000009400000006020000002400005253413100040000010001005df3e621d886a9" + http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Evaluator.Tests/Org.Apache.REEF.Evaluator.Tests.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Evaluator.Tests/Org.Apache.REEF.Evaluator.Tests.csproj b/lang/cs/Org.Apache.REEF.Evaluator.Tests/Org.Apache.REEF.Evaluator.Tests.csproj index e4b0028..372ab1c 100644 --- a/lang/cs/Org.Apache.REEF.Evaluator.Tests/Org.Apache.REEF.Evaluator.Tests.csproj +++ b/lang/cs/Org.Apache.REEF.Evaluator.Tests/Org.Apache.REEF.Evaluator.Tests.csproj @@ -50,6 +50,9 @@ under the License. <Reference Include="System" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="ContextRuntimeTests.cs" /> <Compile Include="EvaluatorConfigurationsTests.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> @@ -95,7 +98,7 @@ under the License. </ProjectReference> </ItemGroup> <ItemGroup> - <None Include="..\App.config"> + <None Include="$(SolutionDir)\App.config"> <Link>App.config</Link> </None> <None Include="packages.config" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Evaluator.Tests/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Evaluator.Tests/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Evaluator.Tests/Properties/AssemblyInfo.cs index 220d853..cdef02f 100644 --- a/lang/cs/Org.Apache.REEF.Evaluator.Tests/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Evaluator.Tests/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Evaluator.Tests")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Evaluator.Tests")] -[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("974cc59d-5bbd-4ba6-b31d-ebe117cd4c2f")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Evaluator/Org.Apache.REEF.Evaluator.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Evaluator/Org.Apache.REEF.Evaluator.csproj b/lang/cs/Org.Apache.REEF.Evaluator/Org.Apache.REEF.Evaluator.csproj index e36f7cc..6e794a8 100644 --- a/lang/cs/Org.Apache.REEF.Evaluator/Org.Apache.REEF.Evaluator.csproj +++ b/lang/cs/Org.Apache.REEF.Evaluator/Org.Apache.REEF.Evaluator.csproj @@ -48,6 +48,9 @@ under the License. <Reference Include="System.Core" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="Evaluator.cs" /> <Compile Include="Exceptions\ClockInstantiationException.cs" /> <Compile Include="Exceptions\EvaluatorConfigurationFileNotFoundException.cs" /> @@ -62,7 +65,7 @@ under the License. </Content> </ItemGroup> <ItemGroup> - <None Include="..\App.config"> + <None Include="$(SolutionDir)\App.config"> <Link>App.config</Link> </None> <None Include="Org.Apache.REEF.Evaluator.nuspec" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/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 c5f119b..848b526 100644 --- a/lang/cs/Org.Apache.REEF.Evaluator/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Evaluator/Properties/AssemblyInfo.cs @@ -21,16 +21,9 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("Org.Apache.REEF.Evaluator")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Evaluator")] -[assembly: AssemblyCopyright("Copyright © 2016")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] + [assembly: Guid("a64dc535-9b1e-41a4-8303-117f8b28c8c0")] -[assembly: AssemblyVersion("0.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] // Allow the tests access to `internal` APIs [assembly: InternalsVisibleTo("Org.Apache.REEF.Tang.Tests, publickey=" + http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Examples.AllHandlers/Org.Apache.REEF.Examples.AllHandlers.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Examples.AllHandlers/Org.Apache.REEF.Examples.AllHandlers.csproj b/lang/cs/Org.Apache.REEF.Examples.AllHandlers/Org.Apache.REEF.Examples.AllHandlers.csproj index 80830ec..77df3e1 100644 --- a/lang/cs/Org.Apache.REEF.Examples.AllHandlers/Org.Apache.REEF.Examples.AllHandlers.csproj +++ b/lang/cs/Org.Apache.REEF.Examples.AllHandlers/Org.Apache.REEF.Examples.AllHandlers.csproj @@ -46,6 +46,9 @@ under the License. <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="AllHandlers.cs" /> <Compile Include="AnotherHelloAllocatedEvaluatorHandler.cs" /> <Compile Include="HelloActiveContextHandler.cs" /> @@ -109,7 +112,7 @@ under the License. <ItemGroup> <None Include="packages.config" /> <None Include="Readme.md" /> - <None Include="..\App.config"> + <None Include="$(SolutionDir)\App.config"> <Link>App.config</Link> </None> </ItemGroup> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Examples.AllHandlers/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Examples.AllHandlers/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Examples.AllHandlers/Properties/AssemblyInfo.cs index 45f974d..3b3a21c 100644 --- a/lang/cs/Org.Apache.REEF.Examples.AllHandlers/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Examples.AllHandlers/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Examples.AllHandlers")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Examples.AllHandlers")] -[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("2c286656-9b3f-42f9-a29f-3307ebfc8022")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Examples.DriverRestart/Org.Apache.REEF.Examples.DriverRestart.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Examples.DriverRestart/Org.Apache.REEF.Examples.DriverRestart.csproj b/lang/cs/Org.Apache.REEF.Examples.DriverRestart/Org.Apache.REEF.Examples.DriverRestart.csproj index dbcb766..ba09842 100644 --- a/lang/cs/Org.Apache.REEF.Examples.DriverRestart/Org.Apache.REEF.Examples.DriverRestart.csproj +++ b/lang/cs/Org.Apache.REEF.Examples.DriverRestart/Org.Apache.REEF.Examples.DriverRestart.csproj @@ -27,11 +27,14 @@ <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="DriverRestart.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> <ItemGroup> - <None Include="..\App.config"> + <None Include="$(SolutionDir)\App.config"> <Link>App.config</Link> </None> <None Include="packages.config" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Examples.DriverRestart/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Examples.DriverRestart/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Examples.DriverRestart/Properties/AssemblyInfo.cs index 4fb5f25..a222bcd 100644 --- a/lang/cs/Org.Apache.REEF.Examples.DriverRestart/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Examples.DriverRestart/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Examples.DriverRestart")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Examples.DriverRestart")] -[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("eab1753e-491e-449e-bcf3-50127de63ee1")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Org.Apache.REEF.Examples.HelloREEF.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Org.Apache.REEF.Examples.HelloREEF.csproj b/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Org.Apache.REEF.Examples.HelloREEF.csproj index c6fc4ae..3de2b80 100644 --- a/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Org.Apache.REEF.Examples.HelloREEF.csproj +++ b/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Org.Apache.REEF.Examples.HelloREEF.csproj @@ -27,13 +27,16 @@ <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="HelloDriver.cs" /> <Compile Include="HelloREEF.cs" /> <Compile Include="HelloTask.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> <ItemGroup> - <None Include="..\App.config"> + <None Include="$(SolutionDir)\App.config"> <Link>App.config</Link> </None> <None Include="packages.config" /> @@ -68,7 +71,7 @@ <Project>{cdfb3464-4041-42b1-9271-83af24cd5008}</Project> <Name>Org.Apache.REEF.Wake</Name> </ProjectReference> - <ProjectReference Include="..\Org.Apache.REEF.IO\Org.Apache.REEF.IO.csproj"> + <ProjectReference Include="$(SolutionDir)\Org.Apache.REEF.IO\Org.Apache.REEF.IO.csproj"> <Project>{DEC0F0A8-DBEF-4EBF-B69C-E2369C15ABF1}</Project> <Name>Org.Apache.REEF.IO</Name> </ProjectReference> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Properties/AssemblyInfo.cs index d6ebac9..4889c2b 100644 --- a/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Examples.HelloREEF")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Examples.HelloREEF")] -[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("1aaf7ad7-445c-49f3-b519-f77cd8cd58d7")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Examples/Org.Apache.REEF.Examples.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Examples/Org.Apache.REEF.Examples.csproj b/lang/cs/Org.Apache.REEF.Examples/Org.Apache.REEF.Examples.csproj index 0f812e7..424c1eb 100644 --- a/lang/cs/Org.Apache.REEF.Examples/Org.Apache.REEF.Examples.csproj +++ b/lang/cs/Org.Apache.REEF.Examples/Org.Apache.REEF.Examples.csproj @@ -43,6 +43,9 @@ under the License. <Reference Include="System.Runtime.Serialization" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="DriverRestart\HelloRestartDriver.cs" /> <Compile Include="DriverRestart\HelloRestartTask.cs" /> <Compile Include="MachineLearning\KMeans\Centroids.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Examples/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Examples/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Examples/Properties/AssemblyInfo.cs index 724a315..373e5a9 100644 --- a/lang/cs/Org.Apache.REEF.Examples/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Examples/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Examples")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Examples")] -[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("b9e219f1-a02c-468c-ab26-3ef5c91310f7")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.IMRU.Examples/Org.Apache.REEF.IMRU.Examples.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IMRU.Examples/Org.Apache.REEF.IMRU.Examples.csproj b/lang/cs/Org.Apache.REEF.IMRU.Examples/Org.Apache.REEF.IMRU.Examples.csproj index ae2cb15..bd0e0b9 100644 --- a/lang/cs/Org.Apache.REEF.IMRU.Examples/Org.Apache.REEF.IMRU.Examples.csproj +++ b/lang/cs/Org.Apache.REEF.IMRU.Examples/Org.Apache.REEF.IMRU.Examples.csproj @@ -43,6 +43,9 @@ under the License. <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="MapperCount\IdentityMapFunction.cs" /> <Compile Include="IntSumReduceFunction.cs" /> <Compile Include="MapperCount\MapperCount.cs" /> @@ -106,7 +109,7 @@ under the License. </ProjectReference> </ItemGroup> <ItemGroup> - <None Include="..\App.config"> + <None Include="$(SolutionDir)\App.config"> <Link>App.config</Link> </None> <None Include="packages.config" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.IMRU.Examples/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IMRU.Examples/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.IMRU.Examples/Properties/AssemblyInfo.cs index d5690d7..8e5163d 100644 --- a/lang/cs/Org.Apache.REEF.IMRU.Examples/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.IMRU.Examples/Properties/AssemblyInfo.cs @@ -24,34 +24,11 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.IMRU.Examples")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.IMRU.Examples")] -[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("1aaf7ad7-445c-49f3-b519-f77cd8cd58d7")] -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] - // Allow the tests project access to `internal` APIs [assembly: InternalsVisibleTo("Org.Apache.REEF.Tests, publickey=" + "00240000048000009400000006020000002400005253413100040000010001005df3e621d886a9" + http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.IMRU.Tests/Org.Apache.REEF.IMRU.Tests.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IMRU.Tests/Org.Apache.REEF.IMRU.Tests.csproj b/lang/cs/Org.Apache.REEF.IMRU.Tests/Org.Apache.REEF.IMRU.Tests.csproj index c31fa98..5ff4160 100644 --- a/lang/cs/Org.Apache.REEF.IMRU.Tests/Org.Apache.REEF.IMRU.Tests.csproj +++ b/lang/cs/Org.Apache.REEF.IMRU.Tests/Org.Apache.REEF.IMRU.Tests.csproj @@ -48,6 +48,9 @@ under the License. </Reference> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="ImruDriverCancelTests.cs" /> <Compile Include="IMRUJobDefinitionBuilderTests.cs" /> <Compile Include="JobLifecycleManagerTest.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.IMRU.Tests/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IMRU.Tests/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.IMRU.Tests/Properties/AssemblyInfo.cs index 70562ee..6a2c959 100644 --- a/lang/cs/Org.Apache.REEF.IMRU.Tests/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.IMRU.Tests/Properties/AssemblyInfo.cs @@ -20,13 +20,6 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("Org.Apache.REEF.IMRU.Tests")] [assembly: AssemblyDescription("Tests for Iterative Map Reduce Update (IMRU) API for REEF")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("The Apache Software Foundation.")] [assembly: AssemblyProduct("Org.Apache.REEF.IMRU.Tests")] -[assembly: AssemblyCopyright("The Apache Software Foundation")] -[assembly: AssemblyTrademark("The Apache Software Foundation")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] + [assembly: Guid("e3c78171-f90c-4737-b673-31d053c16313")] -[assembly: AssemblyVersion("0.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] \ No newline at end of file http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.IMRU/Org.Apache.REEF.IMRU.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IMRU/Org.Apache.REEF.IMRU.csproj b/lang/cs/Org.Apache.REEF.IMRU/Org.Apache.REEF.IMRU.csproj index f6161d7..86d7785 100644 --- a/lang/cs/Org.Apache.REEF.IMRU/Org.Apache.REEF.IMRU.csproj +++ b/lang/cs/Org.Apache.REEF.IMRU/Org.Apache.REEF.IMRU.csproj @@ -44,6 +44,9 @@ under the License. <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="API\IIMRUClient.cs" /> <Compile Include="API\IIMRUResultHandler.cs" /> <Compile Include="API\IJobCancelledDetector.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/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 50b70e1..418631c 100644 --- a/lang/cs/Org.Apache.REEF.IMRU/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.IMRU/Properties/AssemblyInfo.cs @@ -21,16 +21,9 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("Org.Apache.REEF.IMRU")] [assembly: AssemblyDescription("Iterative Map Reduce Update (IMRU) API for REEF")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("The Apache Software Foundation.")] [assembly: AssemblyProduct("Org.Apache.REEF.IMRU")] -[assembly: AssemblyCopyright("The Apache Software Foundation")] -[assembly: AssemblyTrademark("The Apache Software Foundation")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] + [assembly: Guid("138891df-d331-4a5e-8514-775611c06f6c")] -[assembly: AssemblyVersion("0.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] // Allow the tests project access to `internal` APIs [assembly: InternalsVisibleTo("Org.Apache.REEF.IMRU.Tests, publickey=" + http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.IO.TestClient/Org.Apache.REEF.IO.TestClient.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IO.TestClient/Org.Apache.REEF.IO.TestClient.csproj b/lang/cs/Org.Apache.REEF.IO.TestClient/Org.Apache.REEF.IO.TestClient.csproj index 35bde03..604087b 100644 --- a/lang/cs/Org.Apache.REEF.IO.TestClient/Org.Apache.REEF.IO.TestClient.csproj +++ b/lang/cs/Org.Apache.REEF.IO.TestClient/Org.Apache.REEF.IO.TestClient.csproj @@ -44,6 +44,9 @@ under the License. <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="HadoopFileSystemTest.cs" /> <Compile Include="HadoopFileInputPartitionTest.cs" /> <Compile Include="Run.cs" /> @@ -96,7 +99,7 @@ under the License. </ProjectReference> </ItemGroup> <ItemGroup> - <None Include="..\App.config"> + <None Include="$(SolutionDir)\App.config"> <Link>App.config</Link> </None> </ItemGroup> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.IO.TestClient/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IO.TestClient/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.IO.TestClient/Properties/AssemblyInfo.cs index c1f32a0..9c747fd 100644 --- a/lang/cs/Org.Apache.REEF.IO.TestClient/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.IO.TestClient/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.IO.TestClient")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.IO.TestClient")] -[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("19d27f4a-8215-4737-8ffe-0709264df74d")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.IO.Tests/Org.Apache.REEF.IO.Tests.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IO.Tests/Org.Apache.REEF.IO.Tests.csproj b/lang/cs/Org.Apache.REEF.IO.Tests/Org.Apache.REEF.IO.Tests.csproj index 58b435d..b953bcb 100644 --- a/lang/cs/Org.Apache.REEF.IO.Tests/Org.Apache.REEF.IO.Tests.csproj +++ b/lang/cs/Org.Apache.REEF.IO.Tests/Org.Apache.REEF.IO.Tests.csproj @@ -52,6 +52,9 @@ under the License. </Reference> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="FileSystemTestUtilities.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="TestAzureBlockBlobFileSystem.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.IO.Tests/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IO.Tests/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.IO.Tests/Properties/AssemblyInfo.cs index 496d617..bb79944 100644 --- a/lang/cs/Org.Apache.REEF.IO.Tests/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.IO.Tests/Properties/AssemblyInfo.cs @@ -20,13 +20,6 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("Org.Apache.REEF.IO.Tests")] [assembly: AssemblyDescription("Tests for the IO Library for REEF")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("The Apache Software Foundation.")] [assembly: AssemblyProduct("Org.Apache.REEF.IO.Tests")] -[assembly: AssemblyCopyright("The Apache Software Foundation")] -[assembly: AssemblyTrademark("The Apache Software Foundation")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] -[assembly: AssemblyVersion("0.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] + [assembly: Guid("a22b790a-0432-4395-9949-bf8e3958f061")] \ No newline at end of file http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.csproj b/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.csproj index eedc6a9..4e9cfab 100644 --- a/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.csproj +++ b/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.csproj @@ -70,6 +70,9 @@ under the License. <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="FileSystem\AzureBlob\AzureBlockBlobFileSystemConfiguration.cs" /> <Compile Include="FileSystem\AzureBlob\AzureBlobType.cs" /> <Compile Include="FileSystem\AzureBlob\AzureBlockBlobFileSystemConfigurationProvider.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.IO/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IO/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.IO/Properties/AssemblyInfo.cs index 44a2316..6cda1e6 100644 --- a/lang/cs/Org.Apache.REEF.IO/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.IO/Properties/AssemblyInfo.cs @@ -21,16 +21,9 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("Org.Apache.REEF.IO")] [assembly: AssemblyDescription("IO Library for REEF")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("The Apache Software Foundation.")] [assembly: AssemblyProduct("Org.Apache.REEF.IO")] -[assembly: AssemblyCopyright("The Apache Software Foundation")] -[assembly: AssemblyTrademark("The Apache Software Foundation")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] + [assembly: Guid("58c49df4-8dc0-4f58-9a7e-a341d33e40ee")] -[assembly: AssemblyVersion("0.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] // Allow the tests project access to `internal` APIs [assembly: InternalsVisibleTo("Org.Apache.REEF.IO.Tests, publickey=" + http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Network.Examples.Client/Org.Apache.REEF.Network.Examples.Client.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Network.Examples.Client/Org.Apache.REEF.Network.Examples.Client.csproj b/lang/cs/Org.Apache.REEF.Network.Examples.Client/Org.Apache.REEF.Network.Examples.Client.csproj index 60600fc..6b9effd 100644 --- a/lang/cs/Org.Apache.REEF.Network.Examples.Client/Org.Apache.REEF.Network.Examples.Client.csproj +++ b/lang/cs/Org.Apache.REEF.Network.Examples.Client/Org.Apache.REEF.Network.Examples.Client.csproj @@ -43,6 +43,9 @@ under the License. <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="BroadcastAndReduceClient.cs" /> <Compile Include="PipelineBroadcastAndReduceClient.cs" /> <Compile Include="Run.cs" /> @@ -52,7 +55,7 @@ under the License. <None Include="$(SolutionDir)\Org.Apache.REEF.Client\run.cmd"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> - <None Include="..\App.config"> + <None Include="$(SolutionDir)\App.config"> <Link>App.config</Link> </None> <None Include="packages.config" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/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 0632d70..bf2f045 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 @@ -20,13 +20,6 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("Org.Apache.REEF.Network.Examples.Client")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Network.Examples.Client")] -[assembly: AssemblyCopyright("Copyright © 2016")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] + [assembly: Guid("22ae839f-8ae7-46ac-b4bd-6d0d32213d83")] -[assembly: AssemblyVersion("0.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Network.Examples/Org.Apache.REEF.Network.Examples.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Network.Examples/Org.Apache.REEF.Network.Examples.csproj b/lang/cs/Org.Apache.REEF.Network.Examples/Org.Apache.REEF.Network.Examples.csproj index 8816f58..44b3931 100644 --- a/lang/cs/Org.Apache.REEF.Network.Examples/Org.Apache.REEF.Network.Examples.csproj +++ b/lang/cs/Org.Apache.REEF.Network.Examples/Org.Apache.REEF.Network.Examples.csproj @@ -45,6 +45,9 @@ under the License. <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="GroupCommunication\BroadcastReduceDriverAndTasks\BroadcastReduceDriver.cs" /> <Compile Include="GroupCommunication\BroadcastReduceDriverAndTasks\MasterTask.cs" /> <Compile Include="GroupCommunication\BroadcastReduceDriverAndTasks\SlaveTask.cs" /> @@ -87,4 +90,4 @@ under the License. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" /> <Import Project="$(PackagesDir)\StyleCop.MSBuild.$(StyleCopVersion)\build\StyleCop.MSBuild.Targets" Condition="Exists('$(PackagesDir)\StyleCop.MSBuild.$(StyleCopVersion)\build\StyleCop.MSBuild.Targets')" /> -</Project> +</Project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Network.Examples/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Network.Examples/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Network.Examples/Properties/AssemblyInfo.cs index eb948ed..94d4511 100644 --- a/lang/cs/Org.Apache.REEF.Network.Examples/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Network.Examples/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Network.Examples")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Network.Examples")] -[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("a3eafd9d-1be4-44a7-9f1c-9a81a1e59897")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Network.Tests/Org.Apache.REEF.Network.Tests.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Network.Tests/Org.Apache.REEF.Network.Tests.csproj b/lang/cs/Org.Apache.REEF.Network.Tests/Org.Apache.REEF.Network.Tests.csproj index 8ce3408..42b8c4a 100644 --- a/lang/cs/Org.Apache.REEF.Network.Tests/Org.Apache.REEF.Network.Tests.csproj +++ b/lang/cs/Org.Apache.REEF.Network.Tests/Org.Apache.REEF.Network.Tests.csproj @@ -49,6 +49,9 @@ under the License. </Reference> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="TcpClientConfigurationModuleTests.cs" /> <Compile Include="BlockingCollectionExtensionTests.cs" /> <Compile Include="GroupCommunication\GroupCommuDriverTests.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Network.Tests/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Network.Tests/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Network.Tests/Properties/AssemblyInfo.cs index 5a8f3a7..b84c284 100644 --- a/lang/cs/Org.Apache.REEF.Network.Tests/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Network.Tests/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Network.Tests")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Network.Tests")] -[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("146f73c7-6a44-4e98-9b4a-be2584930a66")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Network/Org.Apache.REEF.Network.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Network/Org.Apache.REEF.Network.csproj b/lang/cs/Org.Apache.REEF.Network/Org.Apache.REEF.Network.csproj index 747f1cd..abf99e2 100644 --- a/lang/cs/Org.Apache.REEF.Network/Org.Apache.REEF.Network.csproj +++ b/lang/cs/Org.Apache.REEF.Network/Org.Apache.REEF.Network.csproj @@ -49,6 +49,9 @@ under the License. <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="Group\Config\CodecToStreamingCodecConfiguration.cs" /> <Compile Include="Group\Config\StreamingCodecConfigurationMinusMessage.cs" /> <Compile Include="Group\Driver\Impl\GeneralGroupCommunicationMessage.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/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 c2ad8bc..bd5d7f2 100644 --- a/lang/cs/Org.Apache.REEF.Network/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Network/Properties/AssemblyInfo.cs @@ -24,34 +24,11 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Network")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Network")] -[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("b3f5e608-8908-4f06-a87e-5e41c88133ac")] -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] - // Allow the tests access to `internal` APIs [assembly: InternalsVisibleTo("Org.Apache.REEF.Network.Tests, publickey=" + "00240000048000009400000006020000002400005253413100040000010001005df3e621d886a9" + http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Tang.Examples/Org.Apache.REEF.Tang.Examples.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tang.Examples/Org.Apache.REEF.Tang.Examples.csproj b/lang/cs/Org.Apache.REEF.Tang.Examples/Org.Apache.REEF.Tang.Examples.csproj index d756d4e..5a69c13 100644 --- a/lang/cs/Org.Apache.REEF.Tang.Examples/Org.Apache.REEF.Tang.Examples.csproj +++ b/lang/cs/Org.Apache.REEF.Tang.Examples/Org.Apache.REEF.Tang.Examples.csproj @@ -37,6 +37,9 @@ under the License. <Reference Include="System.Core" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="AnonymousType.cs" /> <Compile Include="CheckChild.cs" /> <Compile Include="DocumentedLocalNamedParameter.cs" /> @@ -71,4 +74,4 @@ under the License. </PropertyGroup> <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" /> </Target> -</Project> +</Project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Tang.Examples/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tang.Examples/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Tang.Examples/Properties/AssemblyInfo.cs index 4dae542..41d4cc3 100644 --- a/lang/cs/Org.Apache.REEF.Tang.Examples/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Tang.Examples/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Tang.Examples")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Tang.Examples")] -[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("cb44520c-2fd1-4d3b-9b9a-250f94a11239")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Tang.Tests/Org.Apache.REEF.Tang.Tests.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tang.Tests/Org.Apache.REEF.Tang.Tests.csproj b/lang/cs/Org.Apache.REEF.Tang.Tests/Org.Apache.REEF.Tang.Tests.csproj index 4d0117a..ea08098 100644 --- a/lang/cs/Org.Apache.REEF.Tang.Tests/Org.Apache.REEF.Tang.Tests.csproj +++ b/lang/cs/Org.Apache.REEF.Tang.Tests/Org.Apache.REEF.Tang.Tests.csproj @@ -47,6 +47,9 @@ under the License. <Reference Include="System.Core" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="ClassHierarchy\TestAnonymousType.cs" /> <Compile Include="ClassHierarchy\TestAvroSerialization.cs" /> <Compile Include="ClassHierarchy\TestClassHierarchy.cs" /> @@ -114,7 +117,7 @@ under the License. <Compile Include="Utilities\Utilities.cs" /> </ItemGroup> <ItemGroup> - <None Include="..\App.config"> + <None Include="$(SolutionDir)\App.config"> <Link>App.config</Link> </None> <None Include="packages.config"> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Tang.Tests/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tang.Tests/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Tang.Tests/Properties/AssemblyInfo.cs index 9989057..8ff2334 100644 --- a/lang/cs/Org.Apache.REEF.Tang.Tests/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Tang.Tests/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Tang.Tests")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Tang.Tests")] -[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("fd47238d-600b-42cd-b62d-0724171a2bc4")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Tang.Tools/Org.Apache.REEF.Tang.Tools.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tang.Tools/Org.Apache.REEF.Tang.Tools.csproj b/lang/cs/Org.Apache.REEF.Tang.Tools/Org.Apache.REEF.Tang.Tools.csproj index 7ca755d..ad9c805 100644 --- a/lang/cs/Org.Apache.REEF.Tang.Tools/Org.Apache.REEF.Tang.Tools.csproj +++ b/lang/cs/Org.Apache.REEF.Tang.Tools/Org.Apache.REEF.Tang.Tools.csproj @@ -37,6 +37,9 @@ under the License. <Reference Include="System.Core" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="ClassHierarchyBuilder.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> @@ -55,7 +58,7 @@ under the License. </ProjectReference> </ItemGroup> <ItemGroup> - <None Include="..\App.config"> + <None Include="$(SolutionDir)\App.config"> <Link>App.config</Link> </None> </ItemGroup> @@ -68,4 +71,4 @@ under the License. </PropertyGroup> <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" /> </Target> -</Project> +</Project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Tang.Tools/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tang.Tools/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Tang.Tools/Properties/AssemblyInfo.cs index d2cefae..7d1a52d 100644 --- a/lang/cs/Org.Apache.REEF.Tang.Tools/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Tang.Tools/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Tang.Tools")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Tang.Tools")] -[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("8a034f16-c6c7-497a-b3c0-f8cfea1635e9")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Tang/Org.Apache.REEF.Tang.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tang/Org.Apache.REEF.Tang.csproj b/lang/cs/Org.Apache.REEF.Tang/Org.Apache.REEF.Tang.csproj index f0145ba..ecac49a 100644 --- a/lang/cs/Org.Apache.REEF.Tang/Org.Apache.REEF.Tang.csproj +++ b/lang/cs/Org.Apache.REEF.Tang/Org.Apache.REEF.Tang.csproj @@ -45,6 +45,9 @@ under the License. <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="Annotations\DefaultImplementation.cs" /> <Compile Include="Annotations\Inject.cs" /> <Compile Include="Annotations\Name.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/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 d410cb3..7d39537 100644 --- a/lang/cs/Org.Apache.REEF.Tang/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Tang/Properties/AssemblyInfo.cs @@ -24,34 +24,11 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Tang")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Tang")] -[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("9be5f89c-7b7e-4236-ac54-10fda8eef58e")] -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] - // Allow the tests access to `internal` APIs [assembly: InternalsVisibleTo("Org.Apache.REEF.Tang.Tests, publickey=" + "00240000048000009400000006020000002400005253413100040000010001005df3e621d886a9" + http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Tests/Org.Apache.REEF.Tests.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tests/Org.Apache.REEF.Tests.csproj b/lang/cs/Org.Apache.REEF.Tests/Org.Apache.REEF.Tests.csproj index 55679d8..0f57571 100644 --- a/lang/cs/Org.Apache.REEF.Tests/Org.Apache.REEF.Tests.csproj +++ b/lang/cs/Org.Apache.REEF.Tests/Org.Apache.REEF.Tests.csproj @@ -73,6 +73,9 @@ under the License. </Reference> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="Functional\Bridge\HelloSimpleEventHandlers.cs" /> <Compile Include="Functional\Bridge\Parameters\ShouldThrowSerializableException.cs" /> <Compile Include="Functional\Bridge\TestBridgeClient.cs" /> @@ -163,7 +166,7 @@ under the License. <None Include="$(SolutionDir)\Org.Apache.REEF.Client\run.cmd"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> - <None Include="..\App.config"> + <None Include="$(SolutionDir)\App.config"> <Link>App.config</Link> </None> <None Include="packages.config" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Tests/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tests/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Tests/Properties/AssemblyInfo.cs index 1619bb1..d4baa01 100644 --- a/lang/cs/Org.Apache.REEF.Tests/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Tests/Properties/AssemblyInfo.cs @@ -23,30 +23,7 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Tests")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Tests")] -[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("19ebceb4-3b1f-466b-9127-aa14e636d723")] - -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Utilities/Org.Apache.Reef.Utilities.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Utilities/Org.Apache.Reef.Utilities.csproj b/lang/cs/Org.Apache.REEF.Utilities/Org.Apache.Reef.Utilities.csproj index 0fd1c26..ad06c04 100644 --- a/lang/cs/Org.Apache.REEF.Utilities/Org.Apache.Reef.Utilities.csproj +++ b/lang/cs/Org.Apache.REEF.Utilities/Org.Apache.Reef.Utilities.csproj @@ -35,6 +35,9 @@ under the License. <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="AsyncUtils\LoggingHelper.cs" /> <Compile Include="AsyncUtils\RemoveSynchronizationContextAwaiter.cs" /> <Compile Include="AsyncUtils\VoidResult.cs" /> http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Utilities/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Utilities/Properties/AssemblyInfo.cs b/lang/cs/Org.Apache.REEF.Utilities/Properties/AssemblyInfo.cs index 9a1eee9..8a96e10 100644 --- a/lang/cs/Org.Apache.REEF.Utilities/Properties/AssemblyInfo.cs +++ b/lang/cs/Org.Apache.REEF.Utilities/Properties/AssemblyInfo.cs @@ -24,34 +24,11 @@ using System.Runtime.InteropServices; // associated with an assembly. [assembly: AssemblyTitle("Org.Apache.REEF.Utilities")] [assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Org.Apache.REEF.Utilities")] -[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("a7bda51a-552a-4fba-a834-f715c19454ab")] -// 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.16.0.0")] -[assembly: AssemblyFileVersion("0.16.0.0")] - // Allow REEF projects to access internals of the Utilities project to prevent // exposing unnecessary APIs. [assembly: InternalsVisibleTo("Org.Apache.REEF.Common, publickey=" + http://git-wip-us.apache.org/repos/asf/reef/blob/b0a47f9b/lang/cs/Org.Apache.REEF.Wake.Tests/Org.Apache.REEF.Wake.Tests.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Wake.Tests/Org.Apache.REEF.Wake.Tests.csproj b/lang/cs/Org.Apache.REEF.Wake.Tests/Org.Apache.REEF.Wake.Tests.csproj index 91ed56f..c322447 100644 --- a/lang/cs/Org.Apache.REEF.Wake.Tests/Org.Apache.REEF.Wake.Tests.csproj +++ b/lang/cs/Org.Apache.REEF.Wake.Tests/Org.Apache.REEF.Wake.Tests.csproj @@ -44,6 +44,9 @@ under the License. </Reference> </ItemGroup> <ItemGroup> + <Compile Include="$(SolutionDir)\SharedAssemblyInfo.cs"> + <Link>Properties\SharedAssemblyInfo.cs</Link> + </Compile> <Compile Include="ClockTest.cs" /> <Compile Include="MultiCodecTest.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
