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/04 16:18:10 UTC

ignite git commit: Platfrom .Net: Fix ignite.common.dll lookup

Repository: ignite
Updated Branches:
  refs/heads/master 5cec202cb -> 2aff2eeda


Platfrom .Net: Fix ignite.common.dll lookup

Use Ignite.Common.dll in the dir relative to solution, same way as it is being compiled.


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

Branch: refs/heads/master
Commit: 2aff2eedade3fe58ecd48af3e8674c884fb796d4
Parents: 5cec202
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Fri Sep 4 17:17:56 2015 +0300
Committer: ptupitsyn <pt...@gridgain.com>
Committed: Fri Sep 4 17:17:56 2015 +0300

----------------------------------------------------------------------
 .../main/dotnet/Apache.Ignite.Core/Apache.Ignite.Core.csproj | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/2aff2eed/modules/platform/src/main/dotnet/Apache.Ignite.Core/Apache.Ignite.Core.csproj
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/dotnet/Apache.Ignite.Core/Apache.Ignite.Core.csproj b/modules/platform/src/main/dotnet/Apache.Ignite.Core/Apache.Ignite.Core.csproj
index 52f9b48..6a32729 100644
--- a/modules/platform/src/main/dotnet/Apache.Ignite.Core/Apache.Ignite.Core.csproj
+++ b/modules/platform/src/main/dotnet/Apache.Ignite.Core/Apache.Ignite.Core.csproj
@@ -346,22 +346,22 @@
     </ProjectReference>
   </ItemGroup>
   <ItemGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
-    <EmbeddedResource Include="..\x64\Debug\ignite.common.dll">
+    <EmbeddedResource Include="$(SolutionDir)\x64\Debug\ignite.common.dll">
       <Link>resources\debug\x64\ignite.common.dll</Link>
     </EmbeddedResource>
   </ItemGroup>
   <ItemGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
-    <EmbeddedResource Include="..\x64\Release\ignite.common.dll">
+    <EmbeddedResource Include="$(SolutionDir)\x64\Release\ignite.common.dll">
       <Link>resources\release\x64\ignite.common.dll</Link>
     </EmbeddedResource>
   </ItemGroup>
   <ItemGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
-    <EmbeddedResource Include="..\Win32\Debug\ignite.common.dll">
+    <EmbeddedResource Include="$(SolutionDir)\Win32\Debug\ignite.common.dll">
       <Link>resources\debug\x86\ignite.common.dll</Link>
     </EmbeddedResource>
   </ItemGroup>
   <ItemGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
-    <EmbeddedResource Include="..\Win32\Release\ignite.common.dll">
+    <EmbeddedResource Include="$(SolutionDir)\Win32\Release\ignite.common.dll">
       <Link>resources\release\x86\ignite.common.dll</Link>
     </EmbeddedResource>
   </ItemGroup>