You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, our releases contain a tarball of the source code at the particular tag, but we should also be building and attaching platform specific binaries to each release.
.NET is able to compile self-contained, platform specific, releases using dotnet publish --self-contained --runtime <win-x64|linux-arm64|...>. These binaries are independent of any .NET runtime deployed on the host machine.
Right now, our releases contain a tarball of the source code at the particular tag, but we should also be building and attaching platform specific binaries to each release.
.NET is able to compile self-contained, platform specific, releases using
dotnet publish --self-contained --runtime <win-x64|linux-arm64|...>
. These binaries are independent of any .NET runtime deployed on the host machine.References:
The text was updated successfully, but these errors were encountered: