Skip to content

Commit

Permalink
Converting PS1 files to UTF8
Browse files Browse the repository at this point in the history
  • Loading branch information
osbornm committed Jan 19, 2012
1 parent ad62f9d commit 1182929
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 8 deletions.
Binary file modified Scripts/Build-Package-Deploy.ps1
Binary file not shown.
Binary file modified Scripts/Build-Package.ps1
Binary file not shown.
Binary file modified Scripts/Build.ps1
Binary file not shown.
Binary file modified Scripts/Deploy.ps1
Binary file not shown.
4 changes: 2 additions & 2 deletions Scripts/E2E-Tests.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$scriptPath = split-path $MyInvocation.MyCommand.Path
$scriptPath = split-path $MyInvocation.MyCommand.Path
$RootPath = resolve-path(join-path $scriptPath "..")
$WebsitePath = join-path $rootPath "Website"
$NuGetPath = Join-Path $rootPath ".nuget\NuGet.exe"
Expand Down Expand Up @@ -66,4 +66,4 @@ VerifyPackage('1.0.2-alpha')

Get-Process iisexpress | Stop-Process

Pop-Location
Pop-Location
4 changes: 2 additions & 2 deletions Scripts/Get-ConnectionString.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function Get-ConnectionString($configPath, $connectionStringName)
function Get-ConnectionString($configPath, $connectionStringName)
{
$config = [xml](get-content $configPath)

Expand All @@ -8,4 +8,4 @@ function Get-ConnectionString($configPath, $connectionStringName)
$connectionString = $connectionString.Replace(";", "%3B")

return $connectionString
}
}
Binary file modified Scripts/Package.ps1
Binary file not shown.
4 changes: 2 additions & 2 deletions Scripts/Revert-Database.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
param($connectionString = "")
param($connectionString = "")

$scriptPath = Split-Path $MyInvocation.MyCommand.Path
. (join-path $scriptPath Get-ConnectionString.ps1)
Expand All @@ -10,4 +10,4 @@ if ("$connectionString".Trim() -eq "")

$projFile = join-path $scriptPath NuGetGallery.msbuild

& "$(get-content env:windir)\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" $projFile /p:DbConnection=$connectionString /t:RevertDatabase
& "$(get-content env:windir)\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" $projFile /p:DbConnection=$connectionString /t:RevertDatabase
4 changes: 2 additions & 2 deletions Scripts/Update-Database.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
param($connectionString = "")
param($connectionString = "")

$scriptPath = Split-Path $MyInvocation.MyCommand.Path
. (join-path $scriptPath Get-ConnectionString.ps1)
Expand All @@ -10,4 +10,4 @@ if ($connectionString.Trim() -eq "")

$projFile = join-path $scriptPath NuGetGallery.msbuild

& "$(get-content env:windir)\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" $projFile /p:DbConnection=$connectionString /t:UpdateDatabase
& "$(get-content env:windir)\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" $projFile /p:DbConnection=$connectionString /t:UpdateDatabase
Binary file modified Scripts/_Common.ps1
Binary file not shown.

0 comments on commit 1182929

Please sign in to comment.