-
Notifications
You must be signed in to change notification settings - Fork 264
Description
NuGet Product(s) Involved
dotnet.exe
The Elevator Pitch
Related to #4855
We had multiple internal teams at MSFT who are doing a migration to Mariner reach out to us when moving from Mono's nuget
(which is just the nuget.exe CLI) to the dotnet
CLI and one common pain point was the missing support for the install
command.
Most of these teams are not even using .NET but have some tool which is hosted on an internal AzDO feed and they were using nuget install <tool>
e.g. from CMake to grab the assets. Right now you need to create a dummy .csproj like this so you can run dotnet restore
on it which makes this a lot more complicated:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RestorePackagesPath>packages</RestorePackagesPath>
</PropertyGroup>
<ItemGroup>
<PackageDownload Include="Some.Internal.Tool" Version="[7.0.7]" />
</ItemGroup>
</Project>
It'd be great if we could get dotnet nuget install
supported in the future 😄
Additional Context and Details
No response
Please 👍 or 👎 this comment to help us with the direction of this feature & leave as much feedback/questions/concerns as you'd like on this issue itself and we will get back to you shortly.