We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54358bf commit e62dcefCopy full SHA for e62dcef
Rubberduck.Core/UI/Command/MenuItems/CommandBars/SerializeProjectsCommandMenuItem.cs
@@ -80,7 +80,7 @@ protected override void OnExecute(object parameter)
80
#if DEBUG
81
//This block must be inside a DEBUG block because the Serialize method
82
//called is conditionally compiled and available only for a DEBUG build.
83
- var path = string.IsNullOrWhiteSpace(_serializationProvider.Target)
+ var path = !string.IsNullOrWhiteSpace(_serializationProvider.Target)
84
? Path.GetDirectoryName(_serializationProvider.Target)
85
: Path.GetTempPath();
86
var traceDirectory = Path.Combine(path, "COM Trace");
0 commit comments