DotNet.ReproducibleBuilds.Isolated
1.2.4
Prefix Reserved
See the version list below for details.
dotnet add package DotNet.ReproducibleBuilds.Isolated --version 1.2.4
NuGet\Install-Package DotNet.ReproducibleBuilds.Isolated -Version 1.2.4
<PackageReference Include="DotNet.ReproducibleBuilds.Isolated" Version="1.2.4"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add DotNet.ReproducibleBuilds.Isolated --version 1.2.4
#r "nuget: DotNet.ReproducibleBuilds.Isolated, 1.2.4"
// Install DotNet.ReproducibleBuilds.Isolated as a Cake Addin #addin nuget:?package=DotNet.ReproducibleBuilds.Isolated&version=1.2.4 // Install DotNet.ReproducibleBuilds.Isolated as a Cake Tool #tool nuget:?package=DotNet.ReproducibleBuilds.Isolated&version=1.2.4
DotNet.ReproducibleBuilds
This repo generates a package that enables reproducible builds in a single step, and documents MSBuild settings useful for enabling reproducibility through isolation.
This repo documents various MSBuild settings for reproducibilty, and providing two nuget packages for enabling some of these setting.
The packages are:
- DotNet.ReproducibleBuilds
- DotNet.ReproducibleBuilds.Isolated
DotNet.ReproducibleBuilds nuget package
It's highly recommended that all projects enable these settings, either via adding this package or manually as described here: https://devblogs.microsoft.com/dotnet/producing-packages-with-source-link/
This package sets the following properties:
PublishRepositoryUrl
=true
EmbedUntrackedSources
=true
DebugType
=embedded
. You can specifyportable
in your project if you prefer, but you'll need to upload that.snupkg
file too.IncludePackageReferencesDuringMarkupCompilation
=true
(enables a fix for WPF)ContinuousIntegrationBuild
=true
on CI systems
It also adds SourceLink dependencies for all repo types (the right one will be used automatically).
For more information on debugging with Source Link is here.
Usage
Add the following to your Directory.Build.props
file so all projects in your solution have the package added -- use the latest package version.
<ItemGroup>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>
MSBuild 16.10 is required to generate binaries that can be fully reproduced. You'll need Visual Studio 2019 16.10 and/or .NET 5.0.300 SDK. You'll get a warning if you're using a lower version.
Prerelease packages are available on the following NuGet feed:
https://pkgs.dev.azure.com/dotnet/Projects/_packaging/ReproducibleBuilds/nuget/v3/index.json
DotNet.ReproducibleBuilds.Isolated Documentation and nuget package
It's highly recommended that all projects enable these settings, either via adding this package or manually, as described in Documentation/Reproducible-MSBuild.
This package configures a variety of properties and item groups to prevent your build from unintentionally depending on other installed software that's not described by your repo. All build dependencies should come from either the MSBuild SDK you've chosen, or from nuget packages restored from your package feed.
If you check out the same commit with the same SDK version and same nuget feed, you should get the same build result.
Usage
Add the following to the top of your projects or to Directory.Build.props
:
<Sdk Name="DotNet.ReproducibleBuilds.Isolated" Version="1.1.1" />
Tested on MSBuild 16.7 (Latest LTS at time of writing).
Contributing
See CONTRIBUTING.md for information on contributing to this project.
This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information, see the .NET Foundation Code of Conduct.
License
This project is licensed with the MIT license.
.NET Foundation
DotNet.ReproducibleBuilds is a .NET Foundation project.
Related Projects
You should take a look at these related projects:
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on DotNet.ReproducibleBuilds.Isolated:
Repository | Stars |
---|---|
dotnet/Silk.NET
The high-speed OpenGL, OpenCL, OpenAL, OpenXR, GLFW, SDL, Vulkan, Assimp, WebGPU, and DirectX bindings library your mother warned you about.
|
|
microsoft/SizeBench
SizeBench is a binary size investigation tool for Windows
|
# Changelog
## [1.2.0]
### Changed
- [When using the Isolated SDK, disable SDK-delivered implicit library packages](https://github.com/dotnet/reproducible-builds/pull/21) - thanks @cmeeren!