Repository: ignite Updated Branches: refs/heads/master cfc74364c -> d911848d4
.NET: Remove dead code from exe project Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/d911848d Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/d911848d Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/d911848d Branch: refs/heads/master Commit: d911848d4240af5ea17e79b2312132c2047b3071 Parents: cfc7436 Author: Pavel Tupitsyn <[email protected]> Authored: Fri May 26 11:43:57 2017 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Fri May 26 11:43:57 2017 +0300 ---------------------------------------------------------------------- .../dotnet/Apache.Ignite/Apache.Ignite.csproj | 1 - .../Apache.Ignite/Service/ServiceDescription.cs | 32 -------------------- 2 files changed, 33 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/d911848d/modules/platforms/dotnet/Apache.Ignite/Apache.Ignite.csproj ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite/Apache.Ignite.csproj b/modules/platforms/dotnet/Apache.Ignite/Apache.Ignite.csproj index 13379f5..3e8f83e 100644 --- a/modules/platforms/dotnet/Apache.Ignite/Apache.Ignite.csproj +++ b/modules/platforms/dotnet/Apache.Ignite/Apache.Ignite.csproj @@ -52,7 +52,6 @@ <Compile Include="Service\IgniteService.cs"> <SubType>Component</SubType> </Compile> - <Compile Include="Service\ServiceDescription.cs" /> <Compile Include="Service\IgniteServiceInstaller.cs"> <SubType>Component</SubType> </Compile> http://git-wip-us.apache.org/repos/asf/ignite/blob/d911848d/modules/platforms/dotnet/Apache.Ignite/Service/ServiceDescription.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite/Service/ServiceDescription.cs b/modules/platforms/dotnet/Apache.Ignite/Service/ServiceDescription.cs deleted file mode 100644 index a81a737..0000000 --- a/modules/platforms/dotnet/Apache.Ignite/Service/ServiceDescription.cs +++ /dev/null @@ -1,32 +0,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. - */ - -namespace Apache.Ignite.Service -{ - using System; - using System.Runtime.InteropServices; - - /// <summary> - /// Service description structure. - /// </summary> - [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] - public struct ServiceDescription - { - /** Pointer to description. */ - public IntPtr desc; - } -} \ No newline at end of file
