Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add -sign to build.sh #59041

Merged
merged 1 commit into from
Nov 19, 2024
Merged
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
9 changes: 9 additions & 0 deletions eng/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ run_build=true
run_pack=false
run_publish=false
run_tests=false
run_sign=false
build_all=false
build_deps=true
only_build_repo_tasks=false
Expand Down Expand Up @@ -64,6 +65,7 @@ Options:
--[no-]pack Produce packages.
--[no-]test Run tests.
--[no-]publish Run publish.
--[no-]sign Run code signing.

--projects A list of projects to build. (Must be an absolute path.)
Globbing patterns are supported, such as \"$(pwd)/**/*.csproj\".
Expand Down Expand Up @@ -166,6 +168,12 @@ while [[ $# -gt 0 ]]; do
-no-test|-notest)
run_tests=false
;;
-sign)
run_sign=true
;;
-no-sign|-nosign)
run_sign=false
;;
-projects)
shift
build_projects="${1:-}"
Expand Down Expand Up @@ -297,6 +305,7 @@ fi
msbuild_args[${#msbuild_args[*]}]="-p:Pack=$run_pack"
msbuild_args[${#msbuild_args[*]}]="-p:Publish=$run_publish"
msbuild_args[${#msbuild_args[*]}]="-p:Test=$run_tests"
msbuild_args[${#msbuild_args[*]}]="-p:Sign=$run_sign"

msbuild_args[${#msbuild_args[*]}]="-p:TargetArchitecture=$target_arch"
msbuild_args[${#msbuild_args[*]}]="-p:TargetOsName=$target_os_name"
Expand Down
Loading