File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,8 @@ export class DebugPlatformCommand implements ICommand {
42
42
[ selectedDeviceForDebug . deviceInfo . identifier ] : true
43
43
} ,
44
44
// This will default in the liveSyncCommandHelper
45
- buildPlatform : undefined
45
+ buildPlatform : undefined ,
46
+ skipNativePrepare : false
46
47
} ) ;
47
48
}
48
49
Original file line number Diff line number Diff line change @@ -384,7 +384,7 @@ interface IDevicePathProvider {
384
384
/**
385
385
* Describes additional options, that can be passed to LiveSyncCommandHelper.
386
386
*/
387
- interface ILiveSyncCommandHelperAdditionalOptions extends IBuildPlatformAction {
387
+ interface ILiveSyncCommandHelperAdditionalOptions extends IBuildPlatformAction , INativePrepare {
388
388
/**
389
389
* A map representing devices which have debugging enabled initially.
390
390
*/
Original file line number Diff line number Diff line change @@ -93,7 +93,8 @@ export class LiveSyncCommandHelper implements ILiveSyncCommandHelper {
93
93
platform,
94
94
emulator : d . isEmulator ,
95
95
projectDir : this . $projectData . projectDir
96
- } )
96
+ } ) ,
97
+ skipNativePrepare : additionalOptions && additionalOptions . skipNativePrepare
97
98
} ;
98
99
99
100
return info ;
You can’t perform that action at this time.
0 commit comments