Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Commit

Permalink
Import the Microsoft.Dotnet.Build.Bundle package (#541)
Browse files Browse the repository at this point in the history
This change adds the single-file bundler to the .Net core toolset.
The bundler is a tool that packs an app, its dependencies, the host and
optionally the runtime into a single executable file, for ease of distribution.

The Bundle tool will be invoked form the SDK, as part of dotnet CLI.
(dotnet publish /p:PublishSingleFile=true)

Further details about single-file publishing can be here:
https://github.com/dotnet/designs/blob/master/accepted/single-file/design.md
  • Loading branch information
swaroop-sridhar authored Mar 29, 2019
1 parent 498e7c3 commit 90495da
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@
<Sha>
</Sha>
</Dependency>
<Dependency Name="Microsoft.NET.Build.Bundle" Version="3.0.0-preview4-27527-19">
<Uri>https://github.com/dotnet/core-setup</Uri>
<Sha>
</Sha>
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19179.1">
Expand Down
4 changes: 4 additions & 0 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@
<!-- Dependencies from https://github.com/mono/linker -->
<ILLinkTasksPackageVersion>0.1.6-prerelease.19164.1</ILLinkTasksPackageVersion>
</PropertyGroup>
<PropertyGroup>
<!-- Dependencies from https://github.com/dotnet/core-setup -->
<MicrosoftNETBuildBundlePackageVersion>3.0.0-preview4-27527-19</MicrosoftNETBuildBundlePackageVersion>
</PropertyGroup>
<PropertyGroup>
<MicrosoftDotNetPlatformAbstractionsPackageVersion>2.2.0-preview1-26620-03</MicrosoftDotNetPlatformAbstractionsPackageVersion>
<MicrosoftDotNetCliUtilsPackageVersion>2.2.100-refac-20180613-1</MicrosoftDotNetCliUtilsPackageVersion>
Expand Down
1 change: 1 addition & 0 deletions src/redist/targets/BundledSdks.targets
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
<BundledSdk Include="FSharp.NET.Sdk" Version="1.0.4-bundled-0100" />
<BundledSdk Include="Microsoft.Docker.Sdk" Version="1.1.0" />
<BundledSdk Include="ILLink.Tasks" Version="$(ILLinkTasksPackageVersion)" />
<BundledSdk Include="Microsoft.NET.Build.Bundle" Version="$(MicrosoftNETBuildBundlePackageVersion)" />
</ItemGroup>
</Project>

0 comments on commit 90495da

Please sign in to comment.