Skip to content

Commit

Permalink
The dotnet-pack output path is relative to project dir :( https://git…
Browse files Browse the repository at this point in the history
  • Loading branch information
Saquib Mian authored and Saquib Mian committed Mar 30, 2017
1 parent 91c56b2 commit 9998e6f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ build_script:
- dotnet build -c Release

after_build:
- dotnet pack src\D2L.CodeStyle.Annotations -o artifacts -c Release
# the dotnet-pack output path is relative to project dir :( https://github.com/dotnet/cli/issues/4765
- dotnet pack src\D2L.CodeStyle.Annotations -o ..\..\artifacts -c Release
- nuget pack src\D2L.CodeStyle.Analyzers\D2L.CodeStyle.Analyzers.csproj -Properties "Configuration=Release" -OutputDirectory artifacts
- nuget pack src\D2L.CodeStyle.TestAnalyzers\D2L.CodeStyle.TestAnalyzers.csproj -Properties "Configuration=Release" -OutputDirectory artifacts

Expand Down

0 comments on commit 9998e6f

Please sign in to comment.