Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing namespace: VirtualClient.Dependencies.Packaging --> VirtualClient.Dependencies #409

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

namespace VirtualClient.Dependencies.Packaging
namespace VirtualClient.Dependencies
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

namespace VirtualClient.Dependencies.Packaging
namespace VirtualClient.Dependencies
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ namespace VirtualClient.Dependencies
using VirtualClient.Common.Extensions;
using VirtualClient.Common.Telemetry;
using VirtualClient.Contracts;
using VirtualClient.Dependencies.Packaging;

/// <summary>
/// Provides functionality for installing the JDK on the system.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

namespace VirtualClient.Dependencies.Packaging
namespace VirtualClient.Dependencies
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

namespace VirtualClient.Dependencies.Packaging
namespace VirtualClient.Dependencies
{
using System;
using System.Collections.Generic;
Expand Down Expand Up @@ -234,4 +234,4 @@ private static bool IsRelativeDiskLocation(string relativeLocationReference)
return match.Success;
}
}
}
}
1 change: 0 additions & 1 deletion src/VirtualClient/VirtualClient.Main/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ namespace VirtualClient
using VirtualClient.Common.Extensions;
using VirtualClient.Common.Telemetry;
using VirtualClient.Configuration;
using VirtualClient.Dependencies.Packaging;

/// <summary>
/// The main entry point for the program
Expand Down
Loading