Skip to content

Commit

Permalink
Update namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
alerickson committed Dec 20, 2023
1 parent 1f545db commit c9d0a59
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 12 deletions.
3 changes: 1 addition & 2 deletions src/code/FindPSResource.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

using Microsoft.PowerShell.PSResourceGet.Cmdlets;
using Microsoft.PowerShell.PSResourceGet.UtilClasses;
using NuGet.Versioning;
using System;
using System.Management.Automation;
using System.Net;
using System.Threading;

namespace Microsoft.PowerShell.PSResourceGet
namespace Microsoft.PowerShell.PSResourceGet.Cmdlets
{
/// <summary>
/// The Find-PSResource cmdlet combines the Find-Module, Find-Script, Find-DscResource, Find-Command cmdlets from V2.
Expand Down
3 changes: 1 addition & 2 deletions src/code/GetInstalledPSResource.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

using Microsoft.PowerShell.PSResourceGet.Cmdlets;
using Microsoft.PowerShell.PSResourceGet.UtilClasses;
using NuGet.Versioning;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Management.Automation;

namespace Microsoft.PowerShell.PSResourceGet
namespace Microsoft.PowerShell.PSResourceGet.Cmdlets
{
/// <summary>
/// It retrieves a resource that was installed with Install-PSResource
Expand Down
2 changes: 1 addition & 1 deletion src/code/GetPSResourceRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Linq;
using System.Management.Automation;

namespace Microsoft.PowerShell.PSResourceGet
namespace Microsoft.PowerShell.PSResourceGet.Cmdlets
{
/// <summary>
/// The Get-PSResourceRepository cmdlet replaces the Get-PSRepository cmdlet from V2.
Expand Down
2 changes: 1 addition & 1 deletion src/code/GetPSScriptFileInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System;
using System.Management.Automation;

namespace Microsoft.PowerShell.PSResourceGet
namespace Microsoft.PowerShell.PSResourceGet.Cmdlets
{
/// <summary>
/// Retrieve the contents of a .ps1 file
Expand Down
3 changes: 1 addition & 2 deletions src/code/InstallPSResource.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

using Microsoft.PowerShell.PSResourceGet.Cmdlets;
using Microsoft.PowerShell.PSResourceGet.UtilClasses;
using NuGet.Versioning;
using System;
Expand All @@ -12,7 +11,7 @@
using System.Management.Automation;
using System.Net;

namespace Microsoft.PowerShell.PSResourceGet
namespace Microsoft.PowerShell.PSResourceGet.Cmdlets
{
/// <summary>
/// The Install-PSResource cmdlet installs a resource.
Expand Down
2 changes: 1 addition & 1 deletion src/code/LocalResponseUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Collections;
using System.Collections.Generic;

namespace Microsoft.PowerShell.PSResourceGet
namespace Microsoft.PowerShell.PSResourceGet.Cmdlets
{
internal class LocalResponseUtil : ResponseUtil
{
Expand Down
2 changes: 1 addition & 1 deletion src/code/LocalServerApiCalls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using System.Runtime.ExceptionServices;
using Microsoft.PowerShell.PSResourceGet.Cmdlets;

namespace Microsoft.PowerShell.PSResourceGet
namespace Microsoft.PowerShell.PSResourceGet.Cmdlets
{
internal class LocalServerAPICalls : ServerApiCall
{
Expand Down
2 changes: 1 addition & 1 deletion src/code/NewPSScriptFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Microsoft.PowerShell.Commands;
using Microsoft.PowerShell.PSResourceGet.UtilClasses;

namespace Microsoft.PowerShell.PSResourceGet
namespace Microsoft.PowerShell.PSResourceGet.Cmdlets
{
/// <summary>
/// Creates a new .ps1 file with script information required for publishing a script.
Expand Down
2 changes: 1 addition & 1 deletion src/code/PSScriptHelp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Collections.Generic;
using System.Management.Automation;

namespace Microsoft.PowerShell.PSResourceGet
namespace Microsoft.PowerShell.PSResourceGet.UtilClasses
{
/// <summary>
/// This class contains information for a PSScriptFileInfo (representing a .ps1 file contents).
Expand Down

0 comments on commit c9d0a59

Please sign in to comment.