Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit e751bed

Browse files
author
Dragan
committed
Merge remote-tracking branch 'upstream/master'
2 parents 0e29bd6 + e53dd0c commit e751bed

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/AddIns/Analysis/CodeQuality/Gui/MainView.xaml.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
using System;
2020
using System.Collections.Generic;
2121
using System.Collections.ObjectModel;
22+
using System.IO;
2223
using System.Windows;
2324
using System.Windows.Controls;
2425

@@ -72,7 +73,7 @@ void AddCurrentProjectAssemblyClick(object sender, RoutedEventArgs e)
7273
return;
7374

7475
string fileName = ProjectService.CurrentProject.OutputAssemblyFullPath;
75-
if (string.IsNullOrEmpty(fileName))
76+
if (!File.Exists(fileName))
7677
{
7778
MessageBox.Show("Project output assembly not found! Please build it first!");
7879
return;

src/Main/GlobalAssemblyInfo.cs.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ internal static class RevisionClass
4646
public const string Minor = "0";
4747
public const string Build = "0";
4848
public const string Revision = "$INSERTREVISION$";
49-
public const string VersionName = "Beta 1"; // "" is not valid for no version name, you have to use null if you don't want a version name (eg "Beta 1")
49+
public const string VersionName = "Beta 2"; // "" is not valid for no version name, you have to use null if you don't want a version name (eg "Beta 1")
5050

5151
public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$";
5252
}

0 commit comments

Comments
 (0)