Skip to content

Commit cc27f99

Browse files
authored
Fix AspNetFramework package build (#802)
1 parent 3263458 commit cc27f99

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

appveyor-fullframework.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ branches:
44
- master
55
image: Visual Studio 2017
66
configuration: Release
7+
clone_folder: C:\projects\puppeteer-sharp
78
environment:
89
git_access_token:
910
secure: FxcQ9C8a/NgcQB5dFdZts6ZWEDT4zMhA4qPQAYwWc7huMmhmTIl1sbFEIaAWQMTL
@@ -15,27 +16,23 @@ only_commits:
1516
- appveyor-fullframework.yml
1617
before_build:
1718
- ps: >-
18-
dotnet restore .\lib\PuppeteerSharp.sln
19+
nuget.exe restore .\lib\PuppeteerSharp.AspNetFramework.sln
1920
2021
New-SelfSignedCertificate -Subject "localhost" -FriendlyName "Puppeteer" -CertStoreLocation "cert:\CurrentUser\My"
2122
2223
Get-ChildItem -Path cert:\CurrentUSer\my | where { $_.friendlyname -eq "Puppeteer" } | Export-Certificate -FilePath C:\projects\puppeteer-sharp\lib\PuppeteerSharp.TestServer\testCert.cer
2324
2425
build:
25-
project: .\lib\PuppeteerSharp.sln
26+
project: .\lib\PuppeteerSharp.AspNetFramework.sln
2627
publish_nuget: false
2728
include_nuget_references: true
2829
verbosity: minimal
30+
test: off
2931
after_build:
3032
- cmd: >-
3133
nuget pack C:\projects\puppeteer-sharp\lib\PuppeteerSharp.AspNetFramework\PuppeteerSharp.AspNetFramework.csproj -Prop Configuration=Release
3234
artifacts:
33-
- path: .\lib\PuppeteerSharp.AspNetFramework.*.nupkg
35+
- path: PuppeteerSharp.AspNetFramework.*.nupkg
3436
name: PuppeteerSharp.AspNetFramework Package
35-
test_script:
36-
- cmd: >-
37-
cd C:\projects\puppeteer-sharp\lib\PuppeteerSharp.Tests
38-
39-
dotnet test -f %framework% -s test.runsettings
4037
cache:
4138
- $HOME/.nuget/packages

0 commit comments

Comments
 (0)