Browse Source

fixed typo in setup_iis.ps1

Kevin Howard 11 years ago
parent
commit
1811185d72
1 changed files with 1 additions and 1 deletions
  1. 1 1
      servicestack/setup_iis.ps1

+ 1 - 1
servicestack/setup_iis.ps1

@@ -16,7 +16,7 @@ if ($action -eq 'start') {
     New-WebSite -Name Benchmarks -Port 8080 -PhysicalPath $wwwroot
     New-WebSite -Name Benchmarks -Port 8080 -PhysicalPath $wwwroot
     
     
     # Build the project
     # Build the project
-    &$msbuild "$source\ServiceStackBenchmark.csproj" /t:ResotrePackages
+    &$msbuild "$source\ServiceStackBenchmark.csproj" /t:RestorePackages
     &$msbuild "$source\ServiceStackBenchmark.csproj" /p:Configuration=Release /p:Platform="x64" /t:Clean
     &$msbuild "$source\ServiceStackBenchmark.csproj" /p:Configuration=Release /p:Platform="x64" /t:Clean
     &$msbuild "$source\ServiceStackBenchmark.csproj" /p:Configuration=Release /p:Platform="x64" /p:DeployOnBuild=true /p:PublishProfile=IIS
     &$msbuild "$source\ServiceStackBenchmark.csproj" /p:Configuration=Release /p:Platform="x64" /p:DeployOnBuild=true /p:PublishProfile=IIS
 }
 }