File tree 2 files changed +18
-0
lines changed
StoicDreams.SampleWebsite
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ $userprofile = $env: USERPROFILE
3
+ $searchfolder = " $userprofile \.nuget\packages\stoicdreams.blazorui"
4
+
5
+ Get-ChildItem - Path $searchfolder - Directory - Recurse - Force - Filter " staticwebassets" | ForEach-Object {
6
+ Write-Host $_.FullName
7
+ $indexfile = " $ ( $_.FullName ) \index.html"
8
+ $indexbackup = " $ ( $_.FullName ) \index.backup.html"
9
+ if (Test-Path - Path $indexbackup ) {
10
+ $content = Get-Content - Path $indexbackup
11
+ $content | Set-Content - Path $indexfile
12
+ }
13
+ }
Original file line number Diff line number Diff line change 9
9
"fileName" : " PowerShell.exe" ,
10
10
"workingDirectory" : " ." ,
11
11
"arguments" : " .\\ PowerShell\\ PrepLocalDebug.ps1"
12
+ },
13
+ "CleanLocalDebug" : {
14
+ "fileName" : " PowerShell.exe" ,
15
+ "workingDirectory" : " ." ,
16
+ "arguments" : " .\\ PowerShell\\ CleanLocalDebug.ps1"
12
17
}
13
18
},
14
19
"-vs-binding" : {
You can’t perform that action at this time.
0 commit comments