Commit 10e3736 1 parent 8d63d26 commit 10e3736 Copy full SHA for 10e3736
File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,13 @@ const shell = require('./src/shell-helper');
2
2
const sequencerFactory = require ( './src/build-sequencer' ) ;
3
3
const buildActions = require ( './src/build-actions' ) ;
4
4
5
+ // shell.spawn('mkdir -p ./TweetinviAPI/lib/netstandard1.3');
6
+
5
7
const sequencer = sequencerFactory . create ( ) ;
6
8
7
- sequencer . addAction ( buildActions . updateProjectVersion ) ;
8
- sequencer . addAction ( buildActions . nugetRestore ) ;
9
- sequencer . addAction ( buildActions . buildDotNet ) ;
9
+ // sequencer.addAction(buildActions.updateProjectVersion);
10
+ // sequencer.addAction(buildActions.nugetRestore);
11
+ // sequencer.addAction(buildActions.buildDotNet);
10
12
sequencer . addAction ( buildActions . createNugetPackage ) ;
11
13
12
14
sequencer . execute ( ) ;
Original file line number Diff line number Diff line change @@ -61,7 +61,11 @@ module.exports = {
61
61
} ,
62
62
63
63
createNugetPackage : ( ) => {
64
- return shell . cd ( './TweetinviAPI' ) . then ( ( ) => {
64
+ return shell . spawn ( 'mkdir TweetinviAPI\\lib\\netstandard1.3' ) . then ( ( ) => {
65
+ return shell . spawn ( 'cp ../Tweetinvi/bin/Debug/netstandard1.3/Tweetinvi.*.dll ./TweetinviAPI/lib/netstandard1.3' ) ;
66
+ } ) . then ( ( ) => {
67
+ return shell . cd ( './TweetinviAPI' ) ;
68
+ } ) . then ( ( ) => {
65
69
return shell . spawn ( 'rimraf *.nupkg' ) ;
66
70
} ) . then ( ( ) => {
67
71
return shell . spawn ( 'ls' ) ;
You can’t perform that action at this time.
0 commit comments