瀏覽代碼

update build script

Oren Novotny 9 年之前
父節點
當前提交
06c3f92d2c
共有 2 個文件被更改,包括 5 次插入3 次删除
  1. 0 2
      Rx.NET/Source/System.Reactive.sln
  2. 5 1
      Rx.NET/Source/build-new.ps1

+ 0 - 2
Rx.NET/Source/System.Reactive.sln

@@ -86,8 +86,6 @@ Global
 		{10CC7191-D936-46CA-BA87-0646733571EA}.Debug|x86.Build.0 = Debug|x86
 		{10CC7191-D936-46CA-BA87-0646733571EA}.Debug|x86.Deploy.0 = Debug|x86
 		{10CC7191-D936-46CA-BA87-0646733571EA}.Release|Any CPU.ActiveCfg = Release|x86
-		{10CC7191-D936-46CA-BA87-0646733571EA}.Release|Any CPU.Build.0 = Release|x86
-		{10CC7191-D936-46CA-BA87-0646733571EA}.Release|Any CPU.Deploy.0 = Release|x86
 		{10CC7191-D936-46CA-BA87-0646733571EA}.Release|x64.ActiveCfg = Release|x64
 		{10CC7191-D936-46CA-BA87-0646733571EA}.Release|x64.Build.0 = Release|x64
 		{10CC7191-D936-46CA-BA87-0646733571EA}.Release|x64.Deploy.0 = Release|x64

+ 5 - 1
Rx.NET/Source/build-new.ps1

@@ -32,7 +32,11 @@ if (!(Test-Path .\nuget.exe)) {
 New-Item -ItemType Directory -Force -Path $artifacts
 
 Write-Host "Restoring packages for $scriptPath\System.Reactive.sln" -Foreground Green
-msbuild "$scriptPath\System.Reactive.sln" /t:restore /p:Configuration=$configuration 
+# msbuild "$scriptPath\System.Reactive.sln" /t:restore /p:Configuration=$configuration 
+msbuild "$scriptPath\System.Reactive\System.Reactive.csproj" /t:restore /p:Configuration=$configuration 
+msbuild "$scriptPath\Microsoft.Reactive.Testing\Microsoft.Reactive.Testing.csproj" /t:restore /p:Configuration=$configuration 
+msbuild "$scriptPath\System.Reactive.Observable.Aliases\System.Reactive.Observable.Aliases.csproj" /t:restore /p:Configuration=$configuration 
+msbuild "$scriptPath\Tests.System.Reactive\Tests.System.Reactive.csproj" /t:restore /p:Configuration=$configuration 
 
 Write-Host "Building $scriptPath\System.Reactive.sln" -Foreground Green
 msbuild "$scriptPath\System.Reactive.sln" /t:build /p:Configuration=$configuration