Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add some comments. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | nugetChanges |
Files: | files | file ages | folders |
SHA1: |
5e0ecd405332b81803045dc2bab57124 |
User & Date: | mistachkin 2014-08-19 05:08:43.082 |
Context
2014-08-20
| ||
19:41 | Merge updates from trunk. check-in: 513718f26c user: mistachkin tags: nugetChanges | |
2014-08-19
| ||
05:08 | Add some comments. check-in: 5e0ecd4053 user: mistachkin tags: nugetChanges | |
04:34 | Verify the folder path exists prior to calling the PowerShell Get-ChildItem cmdlet on it during uninstall. check-in: 007720e8f0 user: mistachkin tags: nugetChanges | |
Changes
Changes to NuGet/net20/Core/install.ps1.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | # added by this script and did not exist in the project prior # to that point. # foreach ($item in $folder.ProjectItems) { $item.Remove() } } else { $folder = $project.ProjectItems.AddFolder($platformName) } } $item = $folder.ProjectItems | where { $_.Name -eq $fileName } | > > > > > > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | # added by this script and did not exist in the project prior # to that point. # foreach ($item in $folder.ProjectItems) { $item.Remove() } } else { # # NOTE: Apparently, there are circumstances where this call to add # the folder can fail, e.g. when the user manually excludes # it from the project and then deletes the directory on the # file system from outside of Visual Studio. # $folder = $project.ProjectItems.AddFolder($platformName) } } $item = $folder.ProjectItems | where { $_.Name -eq $fileName } |
︙ | ︙ |
Changes to NuGet/net40/Core/install.ps1.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | # added by this script and did not exist in the project prior # to that point. # foreach ($item in $folder.ProjectItems) { $item.Remove() } } else { $folder = $project.ProjectItems.AddFolder($platformName) } } $item = $folder.ProjectItems | where { $_.Name -eq $fileName } | > > > > > > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | # added by this script and did not exist in the project prior # to that point. # foreach ($item in $folder.ProjectItems) { $item.Remove() } } else { # # NOTE: Apparently, there are circumstances where this call to add # the folder can fail, e.g. when the user manually excludes # it from the project and then deletes the directory on the # file system from outside of Visual Studio. # $folder = $project.ProjectItems.AddFolder($platformName) } } $item = $folder.ProjectItems | where { $_.Name -eq $fileName } |
︙ | ︙ |