Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,9 @@ isMSBuildOnNETCoreSupported()
"debian.8-x64")
__isMSBuildOnNETCoreSupported=1
;;
"debian.9-x64")
__isMSBuildOnNETCoreSupported=1
;;
"fedora.23-x64")
__isMSBuildOnNETCoreSupported=1
;;
Expand All @@ -249,6 +252,9 @@ isMSBuildOnNETCoreSupported()
"fedora.27-x64")
__isMSBuildOnNETCoreSupported=1
;;
"fedora.28-x64")
__isMSBuildOnNETCoreSupported=1
;;
"opensuse.13.2-x64")
__isMSBuildOnNETCoreSupported=1
;;
Expand Down
3 changes: 2 additions & 1 deletion init-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ if [ ! -e $__INIT_TOOLS_DONE_MARKER ]; then
fi

# Replace the binaries restored by the tool runtime script with the portable binaries
if [ "$__PKG_RID" == "linux" ]; then
if [ "$__DISTRO_NAME" == 'fedora.28' ] ||
[ "$__DISTRO_NAME" == 'debian.9' ]; then
cp -r $__DOTNET_PATH/shared/Microsoft.NETCore.App/*/* $__TOOLRUNTIME_DIR
fi

Expand Down