Repository: ignite Updated Branches: refs/heads/ignite-1286 391a9801a -> 1e3ee3a16
IGNITE-1286 review Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/1e3ee3a1 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/1e3ee3a1 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/1e3ee3a1 Branch: refs/heads/ignite-1286 Commit: 1e3ee3a1628fba643ef9de638439bbf7dad2120b Parents: 391a980 Author: ptupitsyn <[email protected]> Authored: Mon Aug 24 16:54:54 2015 +0300 Committer: ptupitsyn <[email protected]> Committed: Mon Aug 24 16:54:54 2015 +0300 ---------------------------------------------------------------------- .../main/dotnet/Apache.Ignite.Core/Ignition.cs | 23 +++++++++++++++ .../platform/src/main/dotnet/Apache.Ignite.sln | 3 +- .../Apache.Ignite.Core.Tests.csproj | 2 +- .../Apache.Ignite.Core.Tests/IgnitionTest.cs | 30 ++++++++++++++++++++ 4 files changed, 55 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/1e3ee3a1/modules/platform/src/main/dotnet/Apache.Ignite.Core/Ignition.cs ---------------------------------------------------------------------- diff --git a/modules/platform/src/main/dotnet/Apache.Ignite.Core/Ignition.cs b/modules/platform/src/main/dotnet/Apache.Ignite.Core/Ignition.cs new file mode 100644 index 0000000..a61a1a8 --- /dev/null +++ b/modules/platform/src/main/dotnet/Apache.Ignite.Core/Ignition.cs @@ -0,0 +1,23 @@ +/* + * 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. + */ + +namespace Apache.Ignite.Core +{ + public class Ignition + { + } +} http://git-wip-us.apache.org/repos/asf/ignite/blob/1e3ee3a1/modules/platform/src/main/dotnet/Apache.Ignite.sln ---------------------------------------------------------------------- diff --git a/modules/platform/src/main/dotnet/Apache.Ignite.sln b/modules/platform/src/main/dotnet/Apache.Ignite.sln index 44d4be0..a2adb9f 100644 --- a/modules/platform/src/main/dotnet/Apache.Ignite.sln +++ b/modules/platform/src/main/dotnet/Apache.Ignite.sln @@ -1,5 +1,4 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 +Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0.31101.0 MinimumVisualStudioVersion = 10.0.40219.1 http://git-wip-us.apache.org/repos/asf/ignite/blob/1e3ee3a1/modules/platform/src/test/dotnet/Apache.Ignite.Core.Tests/Apache.Ignite.Core.Tests.csproj ---------------------------------------------------------------------- diff --git a/modules/platform/src/test/dotnet/Apache.Ignite.Core.Tests/Apache.Ignite.Core.Tests.csproj b/modules/platform/src/test/dotnet/Apache.Ignite.Core.Tests/Apache.Ignite.Core.Tests.csproj index 6e9c9dc..30f14ec 100644 --- a/modules/platform/src/test/dotnet/Apache.Ignite.Core.Tests/Apache.Ignite.Core.Tests.csproj +++ b/modules/platform/src/test/dotnet/Apache.Ignite.Core.Tests/Apache.Ignite.Core.Tests.csproj @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8"?> +<?xml version="1.0" encoding="utf-8"?> <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> http://git-wip-us.apache.org/repos/asf/ignite/blob/1e3ee3a1/modules/platform/src/test/dotnet/Apache.Ignite.Core.Tests/IgnitionTest.cs ---------------------------------------------------------------------- diff --git a/modules/platform/src/test/dotnet/Apache.Ignite.Core.Tests/IgnitionTest.cs b/modules/platform/src/test/dotnet/Apache.Ignite.Core.Tests/IgnitionTest.cs new file mode 100644 index 0000000..a2698d1 --- /dev/null +++ b/modules/platform/src/test/dotnet/Apache.Ignite.Core.Tests/IgnitionTest.cs @@ -0,0 +1,30 @@ +/* + * 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. + */ + +namespace Apache.Ignite.Core.Tests +{ + using NUnit.Framework; + + public class IgnitionTest + { + [Test] + public void Test() + { + Assert.IsNotNull(new Ignition()); + } + } +}
