IGNITE-1629 .NET: Introduced native logging facility - fix merge
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/ae4ae71f Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/ae4ae71f Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/ae4ae71f Branch: refs/heads/ignite-2788 Commit: ae4ae71f0481662a5fb13eb8ee63a17e6c4c3802 Parents: 3c9e254 Author: Pavel Tupitsyn <[email protected]> Authored: Mon Oct 3 12:16:34 2016 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Mon Oct 3 12:16:34 2016 +0300 ---------------------------------------------------------------------- modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/ae4ae71f/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 8e16fb5..7652092 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs @@ -24,6 +24,8 @@ using System.Diagnostics.CodeAnalysis; using System.IO; using System.Linq; + using System.Text; + using System.Xml; using Apache.Ignite.Core.Binary; using Apache.Ignite.Core.Cache; using Apache.Ignite.Core.Cache.Configuration;
