Skip to content

Commit

Permalink
Change PDBs inclusion default to false
Browse files Browse the repository at this point in the history
  • Loading branch information
duduita committed Jan 12, 2024
1 parent 29919b7 commit 0fd5ce5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions VS4Mac_Meadow_Extension/MeadowExecutionCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ public async Task DeployApp(int debugPort, CancellationToken cancellationToken)

var configuration = IdeApp.Workspace.ActiveConfiguration;

bool includePdbs = configuration is SolutionConfigurationSelector isScs
bool isDebugging = configuration is SolutionConfigurationSelector isScs
&& isScs?.Id == "Debug"
&& debugPort > 1000;

await meadow.DeployApp(fileNameExe, includePdbs, cancellationToken);
await meadow.DeployApp(fileNameExe, cancellationToken);

Check failure on line 68 in VS4Mac_Meadow_Extension/MeadowExecutionCommand.cs

View workflow job for this annotation

GitHub Actions / build-mac-2022

Argument 2: cannot convert from 'System.Threading.CancellationToken' to 'bool'

Check failure on line 68 in VS4Mac_Meadow_Extension/MeadowExecutionCommand.cs

View workflow job for this annotation

GitHub Actions / build-mac-2019

Argument 2: cannot convert from 'System.Threading.CancellationToken' to 'bool'

if (includePdbs)
if (isDebugging)
{
meadowDebugServer = await meadow.StartDebuggingSession(debugPort, cancellationToken);
}
Expand Down

0 comments on commit 0fd5ce5

Please sign in to comment.