You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2015/09/21 15:54:49 UTC

[1/2] ignite git commit: IGNITE-1513: Further work on .Net.

Repository: ignite
Updated Branches:
  refs/heads/ignite-1513 5662a317f -> 0ab4819d4


IGNITE-1513: Further work on .Net.


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

Branch: refs/heads/ignite-1513
Commit: 657744f3ca38f618473769b3faf8bc05e2fb4c0d
Parents: 5662a31
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Mon Sep 21 16:53:33 2015 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Mon Sep 21 16:53:33 2015 +0300

----------------------------------------------------------------------
 assembly/release-fabric.xml                     | 10 ++++-----
 .../src/main/dotnet/Apache.Ignite.slnrel        |  2 +-
 .../src/main/dotnet/Apache.Ignite_x86.slnrel    |  2 +-
 .../Apache.Ignite.Examples.csprojrel            |  2 +-
 .../Compute/ClosureExample.cs                   |  2 +-
 .../Compute/TaskExample.cs                      |  2 +-
 .../Datagrid/ContinuousQueryExample.cs          |  2 +-
 .../Datagrid/DataStreamerExample.cs             |  2 +-
 .../Datagrid/PutGetExample.cs                   |  2 +-
 .../Datagrid/QueryExample.cs                    |  2 +-
 .../Datagrid/StoreExample.cs                    |  2 +-
 .../Datagrid/TransactionExample.cs              |  2 +-
 .../Events/EventsExample.cs                     |  2 +-
 .../Messaging/MessagingExample.cs               |  2 +-
 .../Services/ServicesExample.cs                 |  2 +-
 .../Apache.Ignite.ExamplesDll.csprojrel         |  2 +-
 .../dotnet/Examples/Config/example-compute.xml  | 22 ++++++++++----------
 modules/platform/src/main/dotnet/README.txt     |  2 +-
 18 files changed, 32 insertions(+), 32 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/assembly/release-fabric.xml
----------------------------------------------------------------------
diff --git a/assembly/release-fabric.xml b/assembly/release-fabric.xml
index 74aefc9..0326b22 100644
--- a/assembly/release-fabric.xml
+++ b/assembly/release-fabric.xml
@@ -50,19 +50,19 @@
         <!-- Copy .Net files. -->
         <file>
             <source>modules/platform/src/main/dotnet/Apache.Ignite.slnrel</source>
-            <outputDirectory>/platforms/dotnet/src</outputDirectory>
+            <outputDirectory>/platforms/dotnet</outputDirectory>
             <destName>Apache.Ignite.sln</destName>
         </file>
 
         <file>
             <source>modules/platform/src/main/dotnet/Apache.Ignite_x86.slnrel</source>
-            <outputDirectory>/platforms/dotnet/src</outputDirectory>
+            <outputDirectory>/platforms/dotnet</outputDirectory>
             <destName>Apache.Ignite_x86.sln</destName>
         </file>
 
         <file>
             <source>modules/platform/src/main/dotnet/Apache.Ignite/Apache.Ignite.csprojrel</source>
-            <outputDirectory>/platforms/dotnet/src/Apache.Ignite</outputDirectory>
+            <outputDirectory>/platforms/dotnet/Apache.Ignite</outputDirectory>
             <destName>Apache.Ignite.csproj</destName>
         </file>
 
@@ -116,13 +116,13 @@
         <!-- Move .Net "core" module. -->
         <fileSet>
             <directory>modules/platform/src/main/dotnet/Apache.Ignite.Core</directory>
-            <outputDirectory>/platforms/dotnet/src/Apache.Ignite.Core</outputDirectory>
+            <outputDirectory>/platforms/dotnet/Apache.Ignite.Core</outputDirectory>
         </fileSet>
 
         <!-- Move .Net executable module. -->
         <fileSet>
             <directory>modules/platform/src/main/dotnet/Apache.Ignite</directory>
-            <outputDirectory>/platforms/dotnet/src/Apache.Ignite</outputDirectory>
+            <outputDirectory>/platforms/dotnet/Apache.Ignite</outputDirectory>
             <excludes>
                 <exclude>**/*.csproj*</exclude>
             </excludes>

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Apache.Ignite.slnrel
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Apache.Ignite.slnrel b/modules/platform/src/main/dotnet/Apache.Ignite.slnrel
index 2ad9e5d..0229623 100644
--- a/modules/platform/src/main/dotnet/Apache.Ignite.slnrel
+++ b/modules/platform/src/main/dotnet/Apache.Ignite.slnrel
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 11.00
 # Visual Studio 2010
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Apache.Ignite.Core", "Apache.Ignite.Core\Apache.Ignite.Core.csproj", "{4CD2F726-7E2B-46C4-A5BA-057BB82EECB6}"
 EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common", "..\..\cpp\src\common\project\vs\common.vcxproj", "{4F7E4917-4612-4B96-9838-025711ADE391}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common", "..\cpp\src\common\project\vs\common.vcxproj", "{4F7E4917-4612-4B96-9838-025711ADE391}"
 EndProject
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Apache.Ignite", "Apache.Ignite\Apache.Ignite.csproj", "{27F7F3C6-BDDE-43A9-B565-856F8395A04B}"
 EndProject

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Apache.Ignite_x86.slnrel
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Apache.Ignite_x86.slnrel b/modules/platform/src/main/dotnet/Apache.Ignite_x86.slnrel
index 81a4f3b..a85e118 100644
--- a/modules/platform/src/main/dotnet/Apache.Ignite_x86.slnrel
+++ b/modules/platform/src/main/dotnet/Apache.Ignite_x86.slnrel
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 11.00
 # Visual Studio 2010
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Apache.Ignite.Core", "Apache.Ignite.Core\Apache.Ignite.Core.csproj", "{4CD2F726-7E2B-46C4-A5BA-057BB82EECB6}"
 EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common", "..\..\cpp\src\common\project\vs\common.vcxproj", "{4F7E4917-4612-4B96-9838-025711ADE391}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common", "..\cpp\src\common\project\vs\common.vcxproj", "{4F7E4917-4612-4B96-9838-025711ADE391}"
 EndProject
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Apache.Ignite", "Apache.Ignite\Apache.Ignite.csproj", "{27F7F3C6-BDDE-43A9-B565-856F8395A04B}"
 EndProject

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Apache.Ignite.Examples.csprojrel
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Apache.Ignite.Examples.csprojrel b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Apache.Ignite.Examples.csprojrel
index 7742752..ff13ddc 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Apache.Ignite.Examples.csprojrel
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Apache.Ignite.Examples.csprojrel
@@ -36,7 +36,7 @@
   </PropertyGroup>
   <ItemGroup>
     <Reference Include="Apache.Ignite.Core">
-      <HintPath>..\..\src\Apache.Ignite\bin\$(Platform)\$(Configuration)\Apache.Ignite.Core.dll</HintPath>
+      <HintPath>..\..\Apache.Ignite\bin\$(Platform)\$(Configuration)\Apache.Ignite.Core.dll</HintPath>
     </Reference>
     <Reference Include="System" />
     <Reference Include="System.Core" />

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Compute/ClosureExample.cs
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Compute/ClosureExample.cs b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Compute/ClosureExample.cs
index 38742cc..7d0128d 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Compute/ClosureExample.cs
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Compute/ClosureExample.cs
@@ -33,7 +33,7 @@ namespace Apache.Ignite.Examples.Compute
     /// 3) Start example (F5 or Ctrl+F5).
     /// <para />
     /// This example can be run with standalone Apache Ignite .Net node:
-    /// 1) Run %IGNITE_HOME%/platforms/dotnet/src/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
+    /// 1) Run %IGNITE_HOME%/platforms/dotnet/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
     /// Apache.Ignite.exe -IgniteHome="%IGNITE_HOME%" -springConfigUrl=platforms\dotnet\examples\config\example-compute.xml -assembly=[path_to_Apache.Ignite.ExamplesDll.dll]
     /// 2) Start example.
     /// </summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Compute/TaskExample.cs
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Compute/TaskExample.cs b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Compute/TaskExample.cs
index 859e981..47fee9e 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Compute/TaskExample.cs
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Compute/TaskExample.cs
@@ -33,7 +33,7 @@ namespace Apache.Ignite.Examples.Compute
     /// 3) Start example (F5 or Ctrl+F5).
     /// <para />
     /// This example can be run with standalone Apache Ignite .Net node:
-    /// 1) Run %IGNITE_HOME%/platforms/dotnet/src/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
+    /// 1) Run %IGNITE_HOME%/platforms/dotnet/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
     /// Apache.Ignite.exe -IgniteHome="%IGNITE_HOME%" -springConfigUrl=platforms\dotnet\examples\config\example-compute.xml -assembly=[path_to_Apache.Ignite.ExamplesDll.dll]
     /// 2) Start example.
     /// </summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/ContinuousQueryExample.cs
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/ContinuousQueryExample.cs b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/ContinuousQueryExample.cs
index 3bfbbbf..c61b45d 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/ContinuousQueryExample.cs
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/ContinuousQueryExample.cs
@@ -35,7 +35,7 @@ namespace Apache.Ignite.Examples.Datagrid
     /// 3) Start example (F5 or Ctrl+F5).
     /// <para />
     /// This example can be run with standalone Apache Ignite .Net node:
-    /// 1) Run %IGNITE_HOME%/platforms/dotnet/src/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
+    /// 1) Run %IGNITE_HOME%/platforms/dotnet/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
     /// Apache.Ignite.exe -IgniteHome="%IGNITE_HOME%" -springConfigUrl=platforms\dotnet\examples\config\example-cache.xml -assembly=[path_to_Apache.Ignite.ExamplesDll.dll]
     /// 2) Start example.
     /// </summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/DataStreamerExample.cs
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/DataStreamerExample.cs b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/DataStreamerExample.cs
index b00e9d6..ee9e200 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/DataStreamerExample.cs
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/DataStreamerExample.cs
@@ -36,7 +36,7 @@ namespace Apache.Ignite.Examples.Datagrid
     /// 3) Start example (F5 or Ctrl+F5).
     /// <para />
     /// This example can be run with standalone Apache Ignite .Net node:
-    /// 1) Run %IGNITE_HOME%/platforms/dotnet/src/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
+    /// 1) Run %IGNITE_HOME%/platforms/dotnet/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
     /// Apache.Ignite.exe -IgniteHome="%IGNITE_HOME%" -springConfigUrl=platforms\dotnet\examples\config\example-cache.xml -assembly=[path_to_Apache.Ignite.ExamplesDll.dll]
     /// 2) Start example.
     /// </summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/PutGetExample.cs
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/PutGetExample.cs b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/PutGetExample.cs
index 378e38c..c1146f1 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/PutGetExample.cs
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/PutGetExample.cs
@@ -36,7 +36,7 @@ namespace Apache.Ignite.Examples.Datagrid
     /// 3) Start example (F5 or Ctrl+F5).
     /// <para />
     /// This example can be run with standalone Apache Ignite .Net node:
-    /// 1) Run %IGNITE_HOME%/platforms/dotnet/src/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
+    /// 1) Run %IGNITE_HOME%/platforms/dotnet/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
     /// Apache.Ignite.exe -IgniteHome="%IGNITE_HOME%" -springConfigUrl=platforms\dotnet\examples\config\example-cache.xml -assembly=[path_to_Apache.Ignite.ExamplesDll.dll]
     /// 2) Start example.
     /// </summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/QueryExample.cs
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/QueryExample.cs b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/QueryExample.cs
index 528d4aa..523b83f 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/QueryExample.cs
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/QueryExample.cs
@@ -36,7 +36,7 @@ namespace Apache.Ignite.Examples.Datagrid
     /// 3) Start example (F5 or Ctrl+F5).
     /// <para />
     /// This example can be run with standalone Apache Ignite .Net node:
-    /// 1) Run %IGNITE_HOME%/platforms/dotnet/src/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
+    /// 1) Run %IGNITE_HOME%/platforms/dotnet/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
     /// Apache.Ignite.exe -IgniteHome="%IGNITE_HOME%" -springConfigUrl=platforms\dotnet\examples\config\example-cache-query.xml -assembly=[path_to_Apache.Ignite.ExamplesDll.dll]
     /// 2) Start example.
     /// </summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/StoreExample.cs
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/StoreExample.cs b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/StoreExample.cs
index 577fc04..6c2b40d 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/StoreExample.cs
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/StoreExample.cs
@@ -33,7 +33,7 @@ namespace Apache.Ignite.Examples.Datagrid
     /// 3) Start example (F5 or Ctrl+F5).
     /// <para />
     /// This example can be run with standalone Apache Ignite .Net node:
-    /// 1) Run %IGNITE_HOME%/platforms/dotnet/src/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
+    /// 1) Run %IGNITE_HOME%/platforms/dotnet/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
     /// Apache.Ignite.exe -IgniteHome="%IGNITE_HOME%" -springConfigUrl=platforms\dotnet\examples\config\example-cache-store.xml -assembly=[path_to_Apache.Ignite.ExamplesDll.dll]
     /// 2) Start example.
     /// </summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/TransactionExample.cs
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/TransactionExample.cs b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/TransactionExample.cs
index 514fd98..6be3523 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/TransactionExample.cs
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Datagrid/TransactionExample.cs
@@ -33,7 +33,7 @@ namespace Apache.Ignite.Examples.Datagrid
     /// 3) Start example (F5 or Ctrl+F5).
     /// <para />
     /// This example can be run with standalone Apache Ignite .Net node:
-    /// 1) Run %IGNITE_HOME%/platforms/dotnet/src/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
+    /// 1) Run %IGNITE_HOME%/platforms/dotnet/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
     /// Apache.Ignite.exe -IgniteHome="%IGNITE_HOME%" -springConfigUrl=platforms\dotnet\examples\config\example-cache.xml -assembly=[path_to_Apache.Ignite.ExamplesDll.dll]
     /// 2) Start example.
     /// </summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Events/EventsExample.cs
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Events/EventsExample.cs b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Events/EventsExample.cs
index 9c1a7c0..83802cc 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Events/EventsExample.cs
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Events/EventsExample.cs
@@ -36,7 +36,7 @@ namespace Apache.Ignite.Examples.Events
     /// 3) Start example (F5 or Ctrl+F5).
     /// <para />
     /// This example can be run with standalone Apache Ignite .Net node:
-    /// 1) Run %IGNITE_HOME%/platforms/dotnet/src/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
+    /// 1) Run %IGNITE_HOME%/platforms/dotnet/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
     /// Apache.Ignite.exe -IgniteHome="%IGNITE_HOME%" -springConfigUrl=platforms\dotnet\examples\config\example-compute.xml -assembly=[path_to_Apache.Ignite.ExamplesDll.dll]
     /// 2) Start example.
     /// </summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Messaging/MessagingExample.cs
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Messaging/MessagingExample.cs b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Messaging/MessagingExample.cs
index 594af30..a24c47c 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Messaging/MessagingExample.cs
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Messaging/MessagingExample.cs
@@ -26,7 +26,7 @@ namespace Apache.Ignite.Examples.Messaging
     /// <summary>
     /// Example demonstrating Ignite messaging. Should be run with standalone Apache Ignite .Net node.
     /// <para />
-    /// 1) Run %IGNITE_HOME%/platforms/dotnet/src/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
+    /// 1) Run %IGNITE_HOME%/platforms/dotnet/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
     /// Apache.Ignite.exe -IgniteHome="%IGNITE_HOME%" -springConfigUrl=platforms\dotnet\examples\config\example-compute.xml -assembly=[path_to_Apache.Ignite.ExamplesDll.dll]
     /// 2) Build the project Apache.Ignite.ExamplesDll (select it -> right-click -> Build).
     ///    Apache.Ignite.ExamplesDll.dll must appear in %IGNITE_HOME%/platforms/dotnet/Examples/Apache.Ignite.ExamplesDll/bin/${Platform]/${Configuration} folder.

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Services/ServicesExample.cs
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Services/ServicesExample.cs b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Services/ServicesExample.cs
index 33ce66c..6d0ddd0 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Services/ServicesExample.cs
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.Examples/Services/ServicesExample.cs
@@ -32,7 +32,7 @@ namespace Apache.Ignite.Examples.Services
     /// 3) Start example (F5 or Ctrl+F5).
     /// <para />
     /// This example can be run with standalone Apache Ignite .Net node:
-    /// 1) Run %IGNITE_HOME%/platforms/dotnet/src/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
+    /// 1) Run %IGNITE_HOME%/platforms/dotnet/Apache.Ignite/bin/${Platform]/${Configuration}/Apache.Ignite.exe:
     /// Apache.Ignite.exe -IgniteHome="%IGNITE_HOME%" -springConfigUrl=platforms\dotnet\examples\config\example-cache.xml -assembly=[path_to_Apache.Ignite.ExamplesDll.dll]
     /// 2) Start example.
     /// </summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Apache.Ignite.ExamplesDll/Apache.Ignite.ExamplesDll.csprojrel
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.ExamplesDll/Apache.Ignite.ExamplesDll.csprojrel b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.ExamplesDll/Apache.Ignite.ExamplesDll.csprojrel
index f59cd51..fa6b71c 100644
--- a/modules/platform/src/main/dotnet/Examples/Apache.Ignite.ExamplesDll/Apache.Ignite.ExamplesDll.csprojrel
+++ b/modules/platform/src/main/dotnet/Examples/Apache.Ignite.ExamplesDll/Apache.Ignite.ExamplesDll.csprojrel
@@ -33,7 +33,7 @@
   </PropertyGroup>
   <ItemGroup>
     <Reference Include="Apache.Ignite.Core">
-      <HintPath>..\..\src\Apache.Ignite\bin\$(Platform)\$(Configuration)\Apache.Ignite.Core.dll</HintPath>
+      <HintPath>..\..\Apache.Ignite\bin\$(Platform)\$(Configuration)\Apache.Ignite.Core.dll</HintPath>
     </Reference>
     <Reference Include="System" />
     <Reference Include="System.Core" />

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/Examples/Config/example-compute.xml
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Examples/Config/example-compute.xml b/modules/platform/src/main/dotnet/Examples/Config/example-compute.xml
index 3a48a9c..bbc6550 100644
--- a/modules/platform/src/main/dotnet/Examples/Config/example-compute.xml
+++ b/modules/platform/src/main/dotnet/Examples/Config/example-compute.xml
@@ -53,17 +53,17 @@
                 <util:constant static-field="org.apache.ignite.events.EventType.EVT_TASK_SESSION_ATTR_SET"/>
                 <util:constant static-field="org.apache.ignite.events.EventType.EVT_TASK_REDUCED"/>
                 
-				<!-- Job execution events -->
-				<util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_MAPPED"/>
-				<util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_RESULTED"/>
-				<util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_FAILED_OVER"/>
-				<util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_STARTED"/>
-				<util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_FINISHED"/>
-				<util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_TIMEDOUT"/>
-				<util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_REJECTED"/>
-				<util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_FAILED"/>
-				<util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_QUEUED"/>
-				<util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_CANCELLED"/>
+                <!-- Job execution events -->
+                <util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_MAPPED"/>
+                <util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_RESULTED"/>
+                <util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_FAILED_OVER"/>
+                <util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_STARTED"/>
+                <util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_FINISHED"/>
+                <util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_TIMEDOUT"/>
+                <util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_REJECTED"/>
+                <util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_FAILED"/>
+                <util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_QUEUED"/>
+                <util:constant static-field="org.apache.ignite.events.EventType.EVT_JOB_CANCELLED"/>
             </list>
         </property>		
     </bean>

http://git-wip-us.apache.org/repos/asf/ignite/blob/657744f3/modules/platform/src/main/dotnet/README.txt
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/README.txt b/modules/platform/src/main/dotnet/README.txt
index 6023cb2..18a9317 100644
--- a/modules/platform/src/main/dotnet/README.txt
+++ b/modules/platform/src/main/dotnet/README.txt
@@ -16,7 +16,7 @@ Common Requirements:
  * JAVA_HOME environment variable must be set pointing to Java installation directory.
 
 Building the library:
- * Open and build %IGNITE_HOME%\platforms\dotnet\src\Apache.Ignite.sln (or Apache.Ignite_x86.sln if you are running
+ * Open and build %IGNITE_HOME%\platforms\dotnet\Apache.Ignite.sln (or Apache.Ignite_x86.sln if you are running
    32-bit platform).
 
 Development:


[2/2] ignite git commit: IGNITE-1513: Further work on .Net.

Posted by vo...@apache.org.
IGNITE-1513: Further work on .Net.


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

Branch: refs/heads/ignite-1513
Commit: 0ab4819d4b448c561dce625adf31da1346ac46bc
Parents: 657744f
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Mon Sep 21 16:55:29 2015 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Mon Sep 21 16:55:29 2015 +0300

----------------------------------------------------------------------
 assembly/release-fabric.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/0ab4819d/assembly/release-fabric.xml
----------------------------------------------------------------------
diff --git a/assembly/release-fabric.xml b/assembly/release-fabric.xml
index 0326b22..21f6223 100644
--- a/assembly/release-fabric.xml
+++ b/assembly/release-fabric.xml
@@ -140,7 +140,7 @@
 
         <!-- Move .Net licenses. -->
         <fileSet>
-            <directory>modules/platform/src/main/licenses</directory>
+            <directory>modules/platform/licenses</directory>
             <outputDirectory>/platforms/dotnet/licenses</outputDirectory>
         </fileSet>
 
@@ -173,7 +173,7 @@
 
         <!-- Move CPP licenses. -->
         <fileSet>
-            <directory>modules/platform/src/main/licenses</directory>
+            <directory>modules/platform/licenses</directory>
             <outputDirectory>/platforms/cpp/licenses</outputDirectory>
         </fileSet>