Skip to content

Commit ffe264c

Browse files
committed
build 20171107
bug fix fix the bug when importing from vm-settings and select a VM that is locked, VMGuide replyed "VM is locked" followed by "Settings imported successfully".
1 parent c779ed9 commit ffe264c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

VMGuide.GUI/HomePage.xaml.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ private void OpenVM(VirtualMachine VM)
160160
catch (UnauthorizedAccessException e)
161161
{
162162
MessageBox.Show(e.Message, "VMGuide", MessageBoxButton.OK, MessageBoxImage.Information);
163+
return;
163164
}
164165
}
165166

VMGuide.GUI/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// 控制。更改这些特性值可修改
99
// 与程序集关联的信息。
1010
[assembly: AssemblyTitle("VMGuide")]
11-
[assembly: AssemblyDescription("Build 20171014")]
11+
[assembly: AssemblyDescription("Build 20171107")]
1212
[assembly: AssemblyConfiguration("")]
1313
[assembly: AssemblyCompany("")]
1414
[assembly: AssemblyProduct("VMGuide")]
@@ -51,5 +51,5 @@
5151
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
5252
// 方法是按如下所示使用“*”: :
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("3.1.0.0")]
55-
[assembly: AssemblyFileVersion("3.1.0.0")]
54+
[assembly: AssemblyVersion("3.1.1.0")]
55+
[assembly: AssemblyFileVersion("3.1.1.0")]

0 commit comments

Comments
 (0)