diff --git a/src/Microsoft.DotNet.Interactive/Microsoft.DotNet.Interactive.csproj b/src/Microsoft.DotNet.Interactive/Microsoft.DotNet.Interactive.csproj index 7a60971a34..32da41de7f 100644 --- a/src/Microsoft.DotNet.Interactive/Microsoft.DotNet.Interactive.csproj +++ b/src/Microsoft.DotNet.Interactive/Microsoft.DotNet.Interactive.csproj @@ -22,7 +22,6 @@ - diff --git a/src/Microsoft.DotNet.Interactive/Utility/Dotnet.cs b/src/Microsoft.DotNet.Interactive/Utility/Dotnet.cs index 29af38aec6..f0c7971725 100644 --- a/src/Microsoft.DotNet.Interactive/Utility/Dotnet.cs +++ b/src/Microsoft.DotNet.Interactive/Utility/Dotnet.cs @@ -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 ToolInstall( } var versionArg = version is not null ? $"--version {version}" : ""; - + var args = $@"{packageName}"; if (toolPath is not null) {