Skip to content

.NET tool installation consumes much more disk space than necessary #27502

Open
@hickford

Description

@hickford

Install a .NET global tool, such as https://www.nuget.org/packages/Microsoft.dotnet-interactive/1.0.340501, noting the package size of 46.9 MB:

dotnet tool install --global Microsoft.dotnet-interactive --version 1.0.340501

Inspect the installation:

du -h  .dotnet/tools/.store/microsoft.dotnet-interactive
183M    .dotnet/tools/.store/microsoft.dotnet-interactive/

The install size is 183 MB! Why so large? Most surprisingly, the installation includes the original compressed package file! Surely this is redundant.

47M     .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive.1.0.340501.nupkg

I installed on Linux but my install nevertheless includes 40 MB of runtime files relating to other operating systems du -h .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes --max-depth 1. Surely these could be omitted.

11M     .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/unix
16M     .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win
856K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win-arm
1.1M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win-arm64
668K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win10-x64
592K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win10-x86
660K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win7-x64
592K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win7-x86
612K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win8-x64
540K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win8-x86
644K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win81-x64
576K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win81-x86
240K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/linux-arm
436K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/linux-arm64
32K     .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/linux-musl-x64
1.6M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/linux-x64
1.6M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/osx
416K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win-x64
364K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/win-x86
72K     .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/osx-arm64
56K     .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/osx-x64
260K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/freebsd
260K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/illumos
260K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/ios
404K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/linux
260K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/solaris
260K    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes/tvos
40M     .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/runtimes

There are also tens of megabytes of translations for languages I've never used. However I suppose these are necessary to support the case when the user changes language after install.

1.7M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/cs
1.8M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/de
1.8M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/es
1.8M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/fr
1.8M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/it
2.0M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/ja
1.8M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/ko
1.8M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/pl
1.8M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/pt-BR
2.3M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/ru
1.8M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/tr
1.6M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/zh-Hans
1.6M    .dotnet/tools/.store/microsoft.dotnet-interactive/1.0.340501/microsoft.dotnet-interactive/1.0.340501/tools/net6.0/any/zh-Hant

Together this suggests the installation size could be reduced by at least 50%.

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions