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/12/03 14:09:23 UTC

[08/22] ignite git commit: wip

wip


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

Branch: refs/heads/ignite-1626
Commit: b7b1fb667f6200bd06f04cfb80fb3af15a32b802
Parents: c3bac9c
Author: Pavel Tupitsyn <pt...@gridgain.com>
Authored: Thu Nov 12 16:45:43 2015 +0300
Committer: Pavel Tupitsyn <pt...@gridgain.com>
Committed: Thu Nov 12 16:45:43 2015 +0300

----------------------------------------------------------------------
 .../dotnet/Apache.Ignite.nuspec.Install.ps1     | 20 +++++++++-----------
 1 file changed, 9 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/b7b1fb66/modules/platforms/dotnet/Apache.Ignite.nuspec.Install.ps1
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.nuspec.Install.ps1 b/modules/platforms/dotnet/Apache.Ignite.nuspec.Install.ps1
index 52f47f9..33115d0 100644
--- a/modules/platforms/dotnet/Apache.Ignite.nuspec.Install.ps1
+++ b/modules/platforms/dotnet/Apache.Ignite.nuspec.Install.ps1
@@ -12,15 +12,13 @@
 
 param($installPath, $toolsPath, $package, $project)
 
-$configItem = $project.ProjectItems.Item("NLog.config")
+ForEach ($item in $project.ProjectItems) 
+{ 
+    # Copy Always = 1
+    # Copy if Newer = 2  
+    # $item.Properties.Item("CopyToOutputDirectory").Value = 2
+    Write-Host $item.Name 
 
-# set 'Copy To Output Directory' to 'Copy if newer'
-$copyToOutput = $configItem.Properties.Item("CopyToOutputDirectory")
-
-# Copy Always Always copyToOutput.Value = 1
-# Copy if Newer copyToOutput.Value = 2  
-$copyToOutput.Value = 2
-
-# set 'Build Action' to 'Content'
-$buildAction = $configItem.Properties.Item("BuildAction")
-$buildAction.Value = 2
\ No newline at end of file
+    #$buildAction = $item.Properties.Item("BuildAction")
+    #$buildAction.Value = 2
+}