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

Remove unnecessary reference #3196

Merged
merged 2 commits into from
Sep 21, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Remove unused using.
  • Loading branch information
shyamnamboodiripad committed Sep 21, 2023
commit 3331299f0cd0d9928c620760a81a077524e3bf22
4 changes: 1 addition & 3 deletions src/Microsoft.DotNet.Interactive/Utility/Dotnet.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using FluentAssertions.Execution;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;

namespace Microsoft.DotNet.Interactive.Utility;
@@ -86,7 +84,7 @@ public Task<CommandLineResult> ToolInstall(
}

var versionArg = version is not null ? $"--version {version}" : "";

var args = $@"{packageName}";
if (toolPath is not null)
{