Skip to content

Commit fbdfee0

Browse files
2602 (#6)
* Update namespace * Update HyperV-DDA.csproj * Clarify VM selection warning for guest cache Correct the MessageBox text shown when no VM is selected. The prompt previously instructed the user to "add a device" but now correctly instructs them to select a VM to change the guest cache type. This is a non-functional text fix in MainWindow.xaml.cs.
1 parent 0cc37e3 commit fbdfee0

27 files changed

+65
-69
lines changed

.wiki

Submodule .wiki updated from c571e69 to 46e812c

AddDevice.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<Window x:Class="TheFlightSims.HyperVDPD.AddDevice"
1+
<Window x:Class="TheFlightSims.HyperVDDA.AddDevice"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6-
xmlns:local="clr-namespace:TheFlightSims.HyperVDPD"
6+
xmlns:local="clr-namespace:TheFlightSims.HyperVDDA"
77
mc:Ignorable="d"
88
Title="Add Device"
99
ResizeMode="NoResize"

AddDevice.xaml.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
using System.Management;
44
using System.Windows;
55

6-
using TheFlightSims.HyperVDPD.DefaultUI;
7-
using TheFlightSims.HyperVDPD.WMIProperties;
6+
using TheFlightSims.HyperVDDA.DefaultUI;
7+
using TheFlightSims.HyperVDDA.WMIProperties;
88

99
/*
10-
* Primary namespace for HyperV-DPD application
10+
* Primary namespace for HyperV-DDA application
1111
* It contains the main window and all related methods for the core application
1212
*/
13-
namespace TheFlightSims.HyperVDPD
13+
namespace TheFlightSims.HyperVDDA
1414
{
1515
/*
1616
* Add Device Window class

App.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Application x:Class="TheFlightSims.HyperVDPD.App"
1+
<Application x:Class="TheFlightSims.HyperVDDA.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns:local="clr-namespace:TheFlightSims.HyperVDPD"
4+
xmlns:local="clr-namespace:TheFlightSims.HyperVDDA"
55
StartupUri="MainWindow.xaml">
66
<Application.Resources>
77
</Application.Resources>

App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Windows;
22

3-
namespace TheFlightSims.HyperVDPD
3+
namespace TheFlightSims.HyperVDDA
44
{
55
public partial class App : Application
66
{

ChangeMemorySpace.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<Window x:Class="TheFlightSims.HyperVDPD.ChangeMemorySpace"
1+
<Window x:Class="TheFlightSims.HyperVDDA.ChangeMemorySpace"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6-
xmlns:local="clr-namespace:TheFlightSims.HyperVDPD"
6+
xmlns:local="clr-namespace:TheFlightSims.HyperVDDA"
77
mc:Ignorable="d"
88
Title="Change Memory Space"
99
SizeToContent="WidthAndHeight"

ChangeMemorySpace.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System.Windows;
22

33
/*
4-
* Primary namespace for HyperV-DPD application
4+
* Primary namespace for HyperV-DDA application
55
* It contains the main window and all related methods for the core application
66
*/
7-
namespace TheFlightSims.HyperVDPD
7+
namespace TheFlightSims.HyperVDDA
88
{
99
/*
1010
* Change Memory Space Window

CheckForAssignableDevice.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<Window x:Class="TheFlightSims.HyperVDPD.CheckForAssignableDevice"
1+
<Window x:Class="TheFlightSims.HyperVDDA.CheckForAssignableDevice"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6-
xmlns:local="clr-namespace:TheFlightSims.HyperVDPD"
6+
xmlns:local="clr-namespace:TheFlightSims.HyperVDDA"
77
mc:Ignorable="d"
88
SizeToContent="WidthAndHeight"
99
ResizeMode="NoResize"

CheckForAssignableDevice.xaml.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
using System.Management;
55
using System.Threading.Tasks;
66
using System.Windows;
7-
using TheFlightSims.HyperVDPD.DefaultUI;
8-
using TheFlightSims.HyperVDPD.WMIProperties;
7+
using TheFlightSims.HyperVDDA.DefaultUI;
8+
using TheFlightSims.HyperVDDA.WMIProperties;
99

1010
/*
11-
* Primary namespace for HyperV-DPD application
11+
* Primary namespace for HyperV-DDA application
1212
* It contains the main window and all related methods for the core application
1313
*/
14-
namespace TheFlightSims.HyperVDPD
14+
namespace TheFlightSims.HyperVDDA
1515
{
1616
/*
1717
* Check for assignable device window

Contributing.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
To clone the repo, run, use this command
88

99
```bash
10-
git clone https://github.com/tfslabs/HyperV-DPD.git
10+
git clone https://github.com/tfslabs/HyperV-DDA.git
1111
```
1212

1313
### Build with Visual Studio (only for Windows)
@@ -19,6 +19,4 @@ To contribute, you may need Visual Studio 2022. Required Visual Studio 2022 SDKs
1919

2020
## Build from source
2121

22-
You can open the `HyperV-DPD.csproj` to open the project in Visual Studio
23-
24-
However, since this project is a part of [Windows Server Management Tool](https://github.com/TheFlightSims/windowsserver-mgmttools), you may need to clone the whole repo, before using Visual Studio, because the full Visual Studio Solution are already configured with valid build configurations.
22+
You can open the `HyperV-DDA.csproj` to open the project in Visual Studio

0 commit comments

Comments
 (0)