Skip to content

Commit 3727721

Browse files
committed
v1.1.0 b fixed configuration and removed experiment flag
1 parent 4452d5f commit 3727721

4 files changed

Lines changed: 9 additions & 11 deletions

File tree

AnalyzeInExcel/App.xaml.cs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -120,15 +120,12 @@ protected override void OnStartup(StartupEventArgs e)
120120
this.MainWindow = splashScreen;
121121
splashScreen.Show();
122122

123-
bool experiment = (((App)Current).AppOptions != null) ? ((App)Current).AppOptions.Experiment : false;
124-
bool excelStarted = false;
125-
if (experiment)
123+
bool excelStarted = ExcelHelper.CreateInstanceWithPivotTable(serverName, databaseName, cubeName, (ex) => th.TrackException(ex));
124+
if (excelStarted)
126125
{
127-
excelStarted = ExcelHelper.CreateInstanceWithPivotTable(serverName, databaseName, cubeName, (ex) => th.TrackException(ex));
128-
if (excelStarted) th.TrackEvent(EV_RUNEXCEL, "RunType", "Interop");
126+
th.TrackEvent(EV_RUNEXCEL, "RunType", "Interop");
129127
}
130-
if (!excelStarted)
131-
{
128+
else {
132129
RunExcelProcess(serverName, databaseName, cubeName);
133130
th.TrackEvent(EV_RUNEXCEL, "RunType", "ODC File");
134131
}

AnalyzeInExcel/Options.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class Options
1313
[Option('n', "telemetry", HelpText = "Enable Telemetry")]
1414
public bool Telemetry { get; set; }
1515

16-
[Option('x', "experiment", HelpText = "Experiment feature")]
17-
public bool Experiment { get; set; }
16+
//[Option('x', "experiment", HelpText = "Experiment feature")]
17+
//public bool Experiment { get; set; }
1818
}
1919
}

ExternalToolsInstaller/ExternalToolsInstaller.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,5 +198,6 @@ private void ExternalToolsInstaller_AfterUninstall(object sender, InstallEventAr
198198
throw;
199199
}
200200
}
201+
201202
}
202203
}

SetupAnalyzeInExcel/SetupAnalyzeInExcel.vdproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3420,8 +3420,8 @@
34203420
{
34213421
"Name" = "8:Microsoft Visual Studio"
34223422
"ProductName" = "8:Analyze in Excel for Power BI Desktop"
3423-
"ProductCode" = "8:{FD892738-C170-4D2F-9C67-8C2DA5272C8D}"
3424-
"PackageCode" = "8:{753DFF51-E645-408C-91D9-38540E786CDF}"
3423+
"ProductCode" = "8:{74F9C867-CF8A-4950-8406-6697988E2C17}"
3424+
"PackageCode" = "8:{3069CC2A-89EA-49B7-8DE5-444F6035B395}"
34253425
"UpgradeCode" = "8:{FC2F9C00-CAD5-455E-BD9D-B1C607F4ABDA}"
34263426
"AspNetVersion" = "8:4.0.30319.0"
34273427
"RestartWWWService" = "11:FALSE"

0 commit comments

Comments
 (0)