Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Commit

Permalink
Refactor file/class location
Browse files Browse the repository at this point in the history
  • Loading branch information
StrangeRanger committed Mar 14, 2024
1 parent db8aaff commit 28b4175
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Management.Automation.Runspaces;
using ActiveDirectoryQuerier.ActiveDirectory;
using ActiveDirectoryQuerier.PowerShell;
using ActiveDirectoryQuerier.ViewModels;

namespace ActiveDirectoryQuerier.Tests;

Expand Down
2 changes: 2 additions & 0 deletions ActiveDirectoryQuerier.Tests/TextBoxViewModelTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using ActiveDirectoryQuerier.ViewModels;

namespace ActiveDirectoryQuerier.Tests;

public class TextBoxViewModelTests
Expand Down
4 changes: 0 additions & 4 deletions ActiveDirectoryQuerier/ActiveDirectoryQuerier.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,4 @@
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.18" />
</ItemGroup>

<ItemGroup>
<Folder Include="ViewModels\" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion ActiveDirectoryQuerier/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
using ActiveDirectoryQuerier.ActiveDirectory;
using ActiveDirectoryQuerier.PowerShell;
using ActiveDirectoryQuerier.Queries;
using ActiveDirectoryQuerier.ViewModels;
using Microsoft.Win32;

namespace ActiveDirectoryQuerier;

/// TODO: Place class into ViewModel folder.
public sealed class MainWindowViewModel : INotifyPropertyChanged
{
// [ Fields ] ------------------------------------------------------------------- //
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.ObjectModel;
using System.ComponentModel;

namespace ActiveDirectoryQuerier;
namespace ActiveDirectoryQuerier.ViewModels;

/// <summary>
/// ViewModel for a ComboBox that displays possible parameters for a PowerShell command.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.ComponentModel;

namespace ActiveDirectoryQuerier;
namespace ActiveDirectoryQuerier.ViewModels;

/// <summary>
/// ViewModel for a TextBox that contains the value of a parameter slot.
Expand Down

0 comments on commit 28b4175

Please sign in to comment.