Skip to content

Commit aad955d

Browse files
derwaspjoemcbride
authored andcommitted
Include symbols for the nuget packages (graphql-dotnet#603)
* add --include-symblos to the main nuget package in order to get pdbs and source available via a source server * Include sources as well * make appveyor push symbol packages
1 parent 11d61de commit aad955d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ deploy:
3131
server: https://www.myget.org/F/graphql-dotnet/api/v2/package
3232
api_key:
3333
secure: +l1vfBMajn1WfmXkQ2LdILKxK4fQ5AHSnnU1kf11Bn1xRGUOTCdPhLwHx232piEn
34-
skip_symbols: true
34+
skip_symbols: false
3535
on:
3636
branch:
3737
- master

tools/tasks/dotnetPack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function compile() {
2424
versionSuffix = `--version-suffix ${settings.versionSuffix}${settings.revision}`;
2525
}
2626

27-
const cmd = `dotnet pack src/GraphQL -o ${settings.artifacts} -c ${settings.target} ${versionSuffix}`
27+
const cmd = `dotnet pack src/GraphQL -o ${settings.artifacts} -c ${settings.target} ${versionSuffix} --include-symbols --include-source`
2828
const one = run(cmd)
2929

3030
const cmd2 = `dotnet pack src/GraphQL.StarWars -o ${settings.artifacts} -c ${settings.target}`

0 commit comments

Comments
 (0)