Skip to content

Commit

Permalink
Pack Win32 as -pre1b
Browse files Browse the repository at this point in the history
  • Loading branch information
jornh committed Jun 22, 2014
1 parent 1a1504c commit e87d1d0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
2 changes: 1 addition & 1 deletion NuGet/CefSharp.Common.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</metadata>
<files>
<!-- Common CefSharp stuff (shared between both WPF and WinForms) -->
<file src="..\*\Release\CefSharp.Core.dll" target="CefSharp\$Platform$"/>
<file src="CefSharp.Core.dll" target="CefSharp\$Platform$"/>
<file src="..\CefSharp\bin\$Platform$\Release\CefSharp.dll" target="CefSharp\$Platform$"/>
<file src="..\CefSharp.BrowserSubprocess\bin\$Platform$\Release\CefSharp.BrowserSubprocess.exe" target="CefSharp\$Platform$"/>

Expand Down
19 changes: 13 additions & 6 deletions NuGet/pack.bat
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
set version=31.0.0-pre1a
set version=31.0.0-pre1b
REM set platform=x86
rem NuGet pack CefSharp.Common.nuspec -NoPackageAnalysis -Version %version% -Properties DotPlatform=
NuGet pack CefSharp.Common.nuspec -NoPackageAnalysis -Version %version% -Properties DotPlatform=.%Platform%;Platform=%Platform%
rem NuGet pack CefSharp.Wpf.nuspec -NoPackageAnalysis -Version %version% -Properties DotPlatform=
rem NuGet pack CefSharp.Wpf.nuspec -NoPackageAnalysis -Version %version% -Properties DotPlatform=.x86
NuGet pack CefSharp.WpfOrWinForms.nuspec -NoPackageAnalysis -Version %version% -Properties ControlType=Wpf;DotPlatform=.%Platform%;Platform=%Platform%
NuGet pack CefSharp.WpfOrWinForms.nuspec -NoPackageAnalysis -Version %version% -Properties ControlType=WinForms;DotPlatform=.%Platform%;Platform=%Platform%

if "%platform%"=="x64" (
copy ..\x86\Release\CefSharp.Core.dll
set DotPlatform=.x64
) else (
copy ..\Win32\Release\CefSharp.Core.dll
set DotPlatform=
)

NuGet pack CefSharp.Common.nuspec -NoPackageAnalysis -Version %version% -Properties DotPlatform=%DotPlatform%;Platform=%Platform%
NuGet pack CefSharp.WpfOrWinForms.nuspec -NoPackageAnalysis -Version %version% -Properties ControlType=Wpf;DotPlatform=%DotPlatform%;Platform=%Platform%
NuGet pack CefSharp.WpfOrWinForms.nuspec -NoPackageAnalysis -Version %version% -Properties ControlType=WinForms;DotPlatform=%DotPlatform%;Platform=%Platform%
9 changes: 0 additions & 9 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ configuration:

platform:
- x64
-
- Win32
- x86

before_build:
- cmd: nuget restore
Expand All @@ -36,10 +34,3 @@ after_test:

artifacts:
- path: NuGet\*.nupkg

matrix:
allow_failures:
- platform: Win32
configuration: Release
- platform: x86
configuration: Release

0 comments on commit e87d1d0

Please sign in to comment.