-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2、降低.NET Core版本到2.0。 3、修复七牛云上传失败没有异常的bug。 4、增加自动构建脚本。
- Loading branch information
Showing
4 changed files
with
84 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
version: 0.0.3.0911.{build} | ||
branches: | ||
only: | ||
- master | ||
image: Visual Studio 2017 | ||
shallow_clone: true | ||
build_script: | ||
- cmd: >- | ||
dotnet build -c Release -o result . | ||
dotnet publish -c Release -o publish . | ||
dotnet publish -c Release -r win-x86 -o publishwin86 . | ||
dotnet publish -c Release -r win-x64 -o publishwin64 . | ||
artifacts: | ||
- path: Backup2Cloud\publish | ||
name: backup2cloud-$(APPVEYOR_BUILD_VERSION)-dotnet-core | ||
type: WebDeployPackage | ||
- path: Backup2Cloud\publishwin86 | ||
name: backup2cloud-$(APPVEYOR_BUILD_VERSION)-win-x86 | ||
type: WebDeployPackage | ||
- path: Backup2Cloud\publishwin64 | ||
name: backup2cloud-$(APPVEYOR_BUILD_VERSION)-win-x64 | ||
type: WebDeployPackage | ||
deploy: | ||
- provider: GitHub | ||
auth_token: | ||
secure: VFLWVehXTfNaqBsG5F8ZkEWTFKvDxhk71wQJ+ZDspUEoqfvXpbQwkB0OA/N+r/qD | ||
draft: false | ||
force_update: true | ||
on: | ||
APPVEYOR_REPO_TAG: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters