Skip to content

Commit

Permalink
Favor project-specific build scripts over top-level script (dotnet/as…
Browse files Browse the repository at this point in the history
…pnetcore#29918)

* Remove top-level build scripts in favor of project specific scripts
* Add more build scripts and move top-level to eng
* Fix path in Powershell script
* Update BuildDirectory for CI jobs
* Fix paths in restore scripts and jobs
* Address feedback from peer review
* Fix references to Html.Abstractions
* Update baseline files with new project
* Fix a few more broken links
* !fixup! Correct Build.props and regen project references
* Update docs and fix public api modification check

Co-authored-by: Doug Bunting <[email protected]>

Commit migrated from dotnet/aspnetcore@0801cea403b2
  • Loading branch information
captainsafia authored Feb 16, 2021
1 parent 911ad86 commit 1003843
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/build.cmd
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@ECHO OFF
SET RepoRoot=%~dp0..\..
%RepoRoot%\build.cmd -projects %~dp0**\*.*proj %*
%RepoRoot%\eng\build.cmd -projects %~dp0**\*.*proj %*
2 changes: 1 addition & 1 deletion src/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -euo pipefail

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
repo_root="$DIR/../.."
"$repo_root/build.sh" --projects "$DIR/**/*.*proj" "$@"
"$repo_root/eng/build.sh" --projects "$DIR/**/*.*proj" "$@"

0 comments on commit 1003843

Please sign in to comment.