Repository: ignite Updated Branches: refs/heads/master 62d69e0da -> 883436c89
IGNITE-1626 : .NET: NuGet install script minor fix Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/883436c8 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/883436c8 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/883436c8 Branch: refs/heads/master Commit: 883436c89aec143f3ae7bdb79a5db633210bf84b Parents: 62d69e0 Author: Pavel Tupitsyn <[email protected]> Authored: Fri Feb 19 18:34:57 2016 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Fri Feb 19 18:34:57 2016 +0300 ---------------------------------------------------------------------- .../dotnet/Apache.Ignite.Core/NuGet/Install.ps1 | 17 ----------------- 1 file changed, 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/883436c8/modules/platforms/dotnet/Apache.Ignite.Core/NuGet/Install.ps1 ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/NuGet/Install.ps1 b/modules/platforms/dotnet/Apache.Ignite.Core/NuGet/Install.ps1 index c1c591b..d4e97bb 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/NuGet/Install.ps1 +++ b/modules/platforms/dotnet/Apache.Ignite.Core/NuGet/Install.ps1 @@ -14,23 +14,6 @@ param($installPath, $toolsPath, $package, $project) Write-Host "Updating project properties..." -Function SetProperties -{ - param ($projItem) - - Write-Host $projItem.Name - - $projItem.Properties.Item("CopyToOutputDirectory").Value = 2 # copy if newer -} - -# Copy default config to output dir for user conveniece -SetProperties $project.ProjectItems.Item("Config").ProjectItems.Item("default-config.xml") - -# ForEach ($item in $project.ProjectItems.Item("Libs").ProjectItems) -# { -# SetProperties $item -# } - . (Join-Path $toolsPath "PostBuild.ps1") # Get the current Post Build Event cmd
