-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed readme.txt from MvcSiteMapProvider.Web and added PowerShell s…
…cript to launch Getting Started URL when MvcSiteMapProvider.MVCx package is installed or updated.
- Loading branch information
1 parent
aabd2cf
commit 1961fe7
Showing
3 changed files
with
8 additions
and
40 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
nuget/mvcsitemapprovider/content/MvcSiteMapProvider_Temp_ReadMe.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This is a dummy file that is required to get install.ps1 to run. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# install.ps1 | ||
param($rootPath, $toolsPath, $package, $project) | ||
|
||
#Delete the dummy readme file | ||
(Get-Project).ProjectItems | ?{ $_.Name -eq "MvcSiteMapProvider_Temp_ReadMe.txt" } | %{ $_.Delete() } | ||
|
||
$DTE.ItemOperations.Navigate("https://github.com/maartenba/MvcSiteMapProvider/wiki/Getting-Started", $DTE.vsNavigateOptions.vsNavigateOptionsNewWindow) |