Repository: incubator-reef Updated Branches: refs/heads/master 1c5926d36 -> 6279d7d85
[REEF-451] Add Org.Apache.REEF.IO This creates the new (empty) project Org.Apache.REEF.IO to hold our data and filesystem abstractions. JIRA: [REEF-451](https://issues.apache.org/jira/browse/REEF-451) Pull Request: This closes #276 Author: Markus Weimer <[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/6279d7d8 Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/6279d7d8 Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/6279d7d8 Branch: refs/heads/master Commit: 6279d7d85ca428b18be755f49133a24c3218d241 Parents: 1c5926d Author: Markus Weimer <[email protected]> Authored: Mon Jul 6 13:47:34 2015 -0700 Committer: Julia Wang <[email protected]> Committed: Mon Jul 6 17:04:02 2015 -0700 ---------------------------------------------------------------------- .../Org.Apache.REEF.IO.csproj | 49 +++++++++++++++++++ .../Org.Apache.REEF.IO.nuspec | 36 ++++++++++++++ .../Properties/AssemblyInfo.cs | 34 +++++++++++++ lang/cs/Org.Apache.REEF.sln | Bin 26004 -> 26956 bytes 4 files changed, 119 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/6279d7d8/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 new file mode 100644 index 0000000..2a995dc --- /dev/null +++ b/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.csproj @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at +http://www.apache.org/licenses/LICENSE-2.0 +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> +<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> + <PropertyGroup> + <ProjectGuid>{DEC0F0A8-DBEF-4EBF-B69C-E2369C15ABF1}</ProjectGuid> + <OutputType>Library</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>Org.Apache.REEF.IO</RootNamespace> + <AssemblyName>Org.Apache.REEF.IO</AssemblyName> + <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> + <FileAlignment>512</FileAlignment> + <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..</SolutionDir> + <RestorePackages>true</RestorePackages> + </PropertyGroup> + <Import Project="$(SolutionDir)\build.props" /> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> + <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" /> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Core" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="System.Data" /> + <Reference Include="System.Xml" /> + </ItemGroup> + <ItemGroup> + <Compile Include="Properties\AssemblyInfo.cs" /> + </ItemGroup> + <ItemGroup> + <None Include="Org.Apache.REEF.IO.nuspec" /> + </ItemGroup> +</Project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/6279d7d8/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.nuspec ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.nuspec b/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.nuspec new file mode 100644 index 0000000..52de27a --- /dev/null +++ b/lang/cs/Org.Apache.REEF.IO/Org.Apache.REEF.IO.nuspec @@ -0,0 +1,36 @@ +<?xml version="1.0"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at +http://www.apache.org/licenses/LICENSE-2.0 +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> +<package > + <metadata> + <id>Org.Apache.REEF.IO</id> + <version>$version$</version> + <title>Org.Apache.REEF.IO</title> + <authors>The Apache REEF project</authors> + <owners>The Apache REEF project</owners> + <licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> + <projectUrl>http://reef.incubator.apache.org/</projectUrl> + <requireLicenseAcceptance>false</requireLicenseAcceptance> + <description>I/O Library for Apache REEF</description> + <copyright>The Apache Software Foundation</copyright> + <tags>REEF IO</tags> + </metadata> + <files> + <file src="..\bin\$Platform$\$Configuration$\Org.Apache.REEF.IO\Org.Apache.REEF.IO.dll" target="lib\net45" /> + <file src="..\bin\$Platform$\$Configuration$\Org.Apache.REEF.IO\Org.Apache.REEF.IO.pdb" target="lib\net45" /> + </files> +</package> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/6279d7d8/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 new file mode 100644 index 0000000..94283c9 --- /dev/null +++ b/lang/cs/Org.Apache.REEF.IO/Properties/AssemblyInfo.cs @@ -0,0 +1,34 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +using System.Reflection; +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.12.0.0")] +[assembly: AssemblyFileVersion("0.12.0.0")] \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/6279d7d8/lang/cs/Org.Apache.REEF.sln ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.sln b/lang/cs/Org.Apache.REEF.sln index 26ff12b..726683e 100644 Binary files a/lang/cs/Org.Apache.REEF.sln and b/lang/cs/Org.Apache.REEF.sln differ
