Repository: ignite Updated Branches: refs/heads/ignite-2.4 d1a23c684 -> aca3b8c66
IGNITE-7473 .NET: Fix ConfigurationManager assembly error on Linux Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/aca3b8c6 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/aca3b8c6 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/aca3b8c6 Branch: refs/heads/ignite-2.4 Commit: aca3b8c664de8dcbbfeabbb0f8c252194d6ad1b2 Parents: d1a23c6 Author: Pavel Tupitsyn <[email protected]> Authored: Wed Jan 31 19:49:07 2018 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Wed Jan 31 19:50:03 2018 +0300 ---------------------------------------------------------------------- modules/platforms/dotnet/Apache.Ignite.Core/Ignition.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/aca3b8c6/modules/platforms/dotnet/Apache.Ignite.Core/Ignition.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Ignition.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Ignition.cs index 20d6dc3..5b93609 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/Ignition.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core/Ignition.cs @@ -193,7 +193,7 @@ namespace Apache.Ignite.Core /// Gets the configuration section. /// </summary> private static T GetConfigurationSection<T>(string sectionName, string configPath) - where T : ConfigurationSection + where T : class { IgniteArgumentCheck.NotNullOrEmpty(sectionName, "sectionName"); IgniteArgumentCheck.NotNullOrEmpty(configPath, "configPath");
