diff --git a/.gitignore b/.gitignore index 42454ef..0b8df13 100644 --- a/.gitignore +++ b/.gitignore @@ -126,6 +126,7 @@ tmp _old _tmp Gemfile.lock +WebWorkbench.mswwsettings # RIA/Silverlight projects Generated_Code/ diff --git a/NuGetPSVariables.1.0.1/content/NuGetPSVariables.Readme.txt b/NuGetPSVariables.1.0.1/content/NuGetPSVariables.Readme.txt deleted file mode 100644 index bd7fab7..0000000 --- a/NuGetPSVariables.1.0.1/content/NuGetPSVariables.Readme.txt +++ /dev/null @@ -1 +0,0 @@ -Nothing to see here. \ No newline at end of file diff --git a/NuGetPSVariables.1.0.1/tools/init.ps1 b/NuGetPSVariables.1.0.1/tools/init.ps1 deleted file mode 100644 index 168dfff..0000000 --- a/NuGetPSVariables.1.0.1/tools/init.ps1 +++ /dev/null @@ -1,43 +0,0 @@ -param($installPath, $toolsPath, $package, $project) - -#$tempDir = [System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::LocalApplicationData) -$tempDir = $env:TEMP -$tempDir = [System.IO.Path]::Combine($tempDir,"NuGetPSVariables") -if (![System.IO.Directory]::Exists($tempDir)) {[System.IO.Directory]::CreateDirectory($tempDir)} -explorer $tempDir -$file = [System.IO.Path]::Combine($tempDir, "nuget.variables.init.ps1.log") -write-host =================================================== -write-host init.ps1 -write-host =================================================== -'===================================================' | out-file $file -'init.ps1' | out-file $file -append -'===================================================' | out-file $file -append - -write-host '$installPath' variable = $installPath -'$installPath' | out-file $file -append -'==============' | out-file $file -append -$installPath | format-list | out-file $file -append -'==============' | out-file $file -append - -write-host '$toolsPath' variable = $toolsPath -'$toolsPath' | out-file $file -append -'==============' | out-file $file -append -$toolsPath | format-list | out-file $file -append -'==============' | out-file $file -append - -write-host '$package' variable = $package -'$package' | out-file $file -append -'==============' | out-file $file -append -$package | format-list | out-file $file -append -'==============' | out-file $file -append - -write-host '$project' variable = $project -write-host Project is always null in init.ps1 -'$project' | out-file $file -append -'==============' | out-file $file -append -'always null in init.ps1' | out-file $file -append -#$project | format-list | out-file $file -append -'==============' | out-file $file -append - -write-host Writing output to $file -write-host =================================================== \ No newline at end of file diff --git a/NuGetPSVariables.1.0.1/tools/install.ps1 b/NuGetPSVariables.1.0.1/tools/install.ps1 deleted file mode 100644 index 3d38059..0000000 --- a/NuGetPSVariables.1.0.1/tools/install.ps1 +++ /dev/null @@ -1,47 +0,0 @@ -param($installPath, $toolsPath, $package, $project) - -$tempDir = $env:TEMP -$tempDir = [System.IO.Path]::Combine($tempDir,"NuGetPSVariables") -if (![System.IO.Directory]::Exists($tempDir)) {[System.IO.Directory]::CreateDirectory($tempDir)} -$file = [System.IO.Path]::Combine($tempDir, "nuget.variables.install.ps1.log") -write-host =================================================== -write-host install.ps1 -write-host =================================================== -'===================================================' | out-file $file -'install.ps1' | out-file $file -append -'===================================================' | out-file $file -append - -write-host '$installPath' variable = $installPath -'$installPath' | out-file $file -append -'==============' | out-file $file -append -$installPath | format-list | out-file $file -append -'==============' | out-file $file -append - -write-host '$toolsPath' variable = $toolsPath -'$toolsPath' | out-file $file -append -'==============' | out-file $file -append -$toolsPath | format-list | out-file $file -append -'==============' | out-file $file -append - -write-host '$package' variable = $package -'$package' | out-file $file -append -'==============' | out-file $file -append -$package | format-list | out-file $file -append -'==============' | out-file $file -append - -write-host '$project' variable = $project -'$project' | out-file $file -append -'==============' | out-file $file -append -$project | format-list | out-file $file -append -'==============' | out-file $file -append - -write-host Writing output to $file -write-host =================================================== - -write-host Removing this package... -#uninstall-package $package.Name -ProjectName $project.Name -uninstall-package NuGetPSVariables -ProjectName $project.Name - -#$project | Get-Member -View Adapted | foreach {write-host $_.Name : $_.Value} -#$project | Get-Member | foreach {write-host $_.name} -#thanks Keith: $project | Get-Member -MemberType Property | foreach {write-host "$($_.Name) : $($project.$($_.Name))"} \ No newline at end of file diff --git a/NuGetPSVariables.1.0.1/tools/uninstall.ps1 b/NuGetPSVariables.1.0.1/tools/uninstall.ps1 deleted file mode 100644 index 0add004..0000000 --- a/NuGetPSVariables.1.0.1/tools/uninstall.ps1 +++ /dev/null @@ -1,39 +0,0 @@ -param($installPath, $toolsPath, $package, $project) - -$tempDir = $env:TEMP -$tempDir = [System.IO.Path]::Combine($tempDir,"NuGetPSVariables") -if (![System.IO.Directory]::Exists($tempDir)) {[System.IO.Directory]::CreateDirectory($tempDir)} -$file = [System.IO.Path]::Combine($tempDir, "nuget.variables.uninstall.ps1.log") -write-host =================================================== -write-host uninstall.ps1 -write-host =================================================== -'===================================================' | out-file $file -'uninstall.ps1' | out-file $file -append -'===================================================' | out-file $file -append - -write-host '$installPath' variable = $installPath -'$installPath' | out-file $file -append -'==============' | out-file $file -append -$installPath | format-list | out-file $file -append -'==============' | out-file $file -append - -write-host '$toolsPath' variable = $toolsPath -'$toolsPath' | out-file $file -append -'==============' | out-file $file -append -$toolsPath | format-list | out-file $file -append -'==============' | out-file $file -append - -write-host '$package' variable = $package -'$package' | out-file $file -append -'==============' | out-file $file -append -$package | format-list | out-file $file -append -'==============' | out-file $file -append - -write-host '$project' variable = $project -'$project' | out-file $file -append -'==============' | out-file $file -append -$project | format-list | out-file $file -append -'==============' | out-file $file -append - -write-host Writing output to $file -write-host =================================================== \ No newline at end of file diff --git a/PocketSharp.Website/WebWorkbench.mswwsettings b/PocketSharp.Website/WebWorkbench.mswwsettings deleted file mode 100644 index a6e76a9..0000000 --- a/PocketSharp.Website/WebWorkbench.mswwsettings +++ /dev/null @@ -1 +0,0 @@ -