-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
Remove need for hack checks to determine if the target is a x86 or x64 build build.ps1 - Remove unused Nupkg variable Variable was empty and has been removed from nuspec file Switch to appveyor nuget feed
- Loading branch information
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- | ||
Files are no longer copied as part of this targets file. | ||
For projects other than CefSharp define a target to copy the files. | ||
Checkout the CefSharp.Common.targets file for an example | ||
--> | ||
|
||
<!-- | ||
Using wildcard matching as per https://stackoverflow.com/a/17252671 | ||
--> | ||
<ItemGroup> | ||
<CefRedist64 Include="$(MSBuildThisFileDirectory)..\CEF\**\*.*" /> | ||
</ItemGroup> | ||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- | ||
Files are no longer copied as part of this targets file. | ||
For projects other than CefSharp define a target to copy the files. | ||
Checkout the CefSharp.Common.targets file for an example | ||
--> | ||
|
||
<!-- | ||
Using wildcard matching as per https://stackoverflow.com/a/17252671 | ||
--> | ||
<ItemGroup> | ||
<CefRedist32 Include="$(MSBuildThisFileDirectory)..\CEF\**\*.*" /> | ||
</ItemGroup> | ||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,12 +19,10 @@ artifacts: | |
- path: NuGet\*.nupkg | ||
name: nupkgfiles | ||
|
||
# Publish to myget.org feed | ||
# Publish to appveyor nuget feed | ||
deploy: | ||
provider: NuGet | ||
server: https://www.myget.org/F/cefsharp/api/v2/package | ||
server: https://ci.appveyor.com/nuget/cefsharp-ci | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
amaitland
Author
Member
|
||
api_key: | ||
secure: uftPtLACVpFbbbFBeFK6XD5fGkv33c+Xa3PWkyWgrod6FNl4AYGOtxScn+gsuuxD | ||
skip_symbols: false | ||
symbol_server: https://www.myget.org/F/cefsharp/api/v2/package | ||
secure: vNESC6IT/8JSw4bcX9i68/mj0K1Jhq1apofM4pQtbuw= | ||
artifact: nupkgfiles |
Do you think it would be ok to fix #63 now so that it just "always pushes" a version to AppVeyor, for each PR? Or do you think it will be a bad idea, with loads of "extra" packages being built and published there?
(I know MyGet had support for keeping a "rolling number" of packages, so that old packages would automatically discarded. Maybe AppVeyor has something similar.)