Skip to content

Commit 26e39e4

Browse files
authored
Release 1.0.1 UI
* Fixed file dialog filter so we can select both .dll and .exe files.
2 parents 6f7f2ae + dff8c85 commit 26e39e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Testura.Code.UnitTestGenerator.UI/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.0.0.0")]
55-
[assembly: AssemblyFileVersion("1.0.0.0")]
54+
[assembly: AssemblyVersion("1.0.1.0")]
55+
[assembly: AssemblyFileVersion("1.0.1.0")]

src/Testura.Code.UnitTestGenerator.UI/ViewModel/MainViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public MainViewModel(IFileDialogService fileDialogService, IDialogService dialog
4545

4646
public void OpenDllFileDialog()
4747
{
48-
var path = _fileDialogService.ShowPickFileDialog("dll (.dll)|*.dll");
48+
var path = _fileDialogService.ShowPickFileDialog("Dll files (.dll)|*.dll|Exe files (.exe)|*.exe");
4949
if (!string.IsNullOrEmpty(path))
5050
{
5151
DllPath = path;

0 commit comments

Comments
 (0)