You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by nt...@apache.org on 2016/03/29 10:04:33 UTC

[04/27] ignite git commit: IGNITE-2872 .NET: Removed deprecation from IgniteConfiguration.SpringConfigUrl property. This closes #571.

IGNITE-2872 .NET: Removed deprecation from IgniteConfiguration.SpringConfigUrl property. This closes #571.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/7864826c
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/7864826c
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/7864826c

Branch: refs/heads/ignite-2004
Commit: 7864826c2c99faf68276f7d963fe66b6e7ccb52e
Parents: afe453f
Author: Pavel Tupitsyn <pt...@gridgain.com>
Authored: Thu Mar 24 17:15:15 2016 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Thu Mar 24 17:15:15 2016 +0300

----------------------------------------------------------------------
 .../dotnet/Apache.Ignite.Core/IgniteConfiguration.cs      | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/7864826c/modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs b/modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs
index e8cc8ff..2aa6899 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs
@@ -318,12 +318,14 @@
 
         /// <summary>
         /// URL to Spring configuration file.
+        /// <para />
+        /// Ignite.NET can be configured natively without Spring. 
+        /// Setting this property will ignore all other properties except <see cref="IgniteHome"/>, 
+        /// <see cref="Assemblies"/>, <see cref="SuppressWarnings"/>, <see cref="LifecycleBeans"/>, 
+        /// <see cref="JvmOptions"/>, <see cref="JvmDllPath"/>, <see cref="IgniteHome"/>, 
+        /// <see cref="JvmInitialMemoryMb"/>, <see cref="JvmMaxMemoryMb"/>.
         /// </summary>
         [SuppressMessage("Microsoft.Design", "CA1056:UriPropertiesShouldNotBeStrings")]
-        [Obsolete("Ignite.NET can be configured natively without Spring. " +
-                  "Setting this property will ignore all other properties except " +
-                  "IgniteHome, Assemblies, SuppressWarnings, LifecycleBeans, JvmOptions, JvmdllPath, IgniteHome, " +
-                  "JvmInitialMemoryMb, JvmMaxMemoryMb.")]
         public string SpringConfigUrl { get; set; }
 
         /// <summary>