8000 Consolidate Unix source-only and non-source-only entrypoints by ViktorHofer · Pull Request #798 · dotnet/dotnet · GitHub
[go: up one dir, main page]

Skip to content

Consolidate Unix source-only and non-source-only entrypoints #798

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

Merged
merged 31 commits into from
May 27, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
b33ad33
Consolidate Unix source-only and non-source-only entrypoints
ViktorHofer May 26, 2025
2ad40fd
Test entrypoint fix
ViktorHofer May 26, 2025
6d0a00a
Small nit
ViktorHofer May 26, 2025
7b0489f
Update build.ps1 as well
ViktorHofer May 26, 2025
9168dc3
Fix configuration
ViktorHofer May 26, 2025
950da13
Fix tests.proj path
ViktorHofer May 26, 2025
ab41861
Fixes
ViktorHofer May 26, 2025
7639822
Simplification
ViktorHofer May 26, 2025
e6e6d0c
Cleanup
ViktorHofer May 26, 2025
6e69c7b
Fix args to use defaults from tools script
ViktorHofer May 26, 2025
91bfbd1
Fixes
ViktorHofer May 26, 2025
a01d438
Use scriptroot instead
ViktorHofer May 26, 2025
f8bd457
Update build.sh
ViktorHofer May 27, 2025
b559f7c
Merge branch 'main' into ConsolidateUnixEntryPoints
ViktorHofer May 27, 2025
66b4016
Emit message for missing PDB instead of warning
ViktorHofer May 27, 2025
3437af2 8000
style nit
ViktorHofer May 27, 2025
d0e7e8c
nit clean-up in build.sh
ViktorHofer May 27, 2025
7ed170c
nit clean-up in build.ps1
ViktorHofer May 27, 2025
84a4837
PR feedback: update links for VSTest workaround
ViktorHofer May 27, 2025
e6936b0
Revert build.ps1 clean-up
ViktorHofer May 27, 2025
af38e9c
Sync with eng/common
ViktorHofer May 27, 2025
b57ac51
Fix nullability issue
ViktorHofer May 27, 2025
5c40eae
Merge branch 'ConsolidateUnixEntryPoints' of https://github.com/dotne…
ViktorHofer May 27, 2025
db72802
Don't run NuGetAudit on offline builds
ViktorHofer May 27, 2025
11fe47b
Fix NuGetAudit condition
ViktorHofer May 27, 2025
40315ed
NuGetAudit setting also in Tools.props
ViktorHofer May 27, 2025
d0ea820
Disable NuGetAudit in BinaryToolKit.csproj
ViktorHofer May 27, 2025
1d3ae35
Remove DotNetBuild property which shouldn't be set for the orchestrat…
ViktorHofer May 27, 2025
490e0e0
DotNetBuildFromVMR is already the default in the VMR D.B.props
ViktorHofer May 27, 2025
938e51d
Merge branch 'main' into ConsolidateUnixEntryPoints
ViktorHofer May 27, 2025
ac8ccf3
Left-over from another PR
ViktorHofer May 27, 2025
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
Prev Previous commit
Next Next commit
Fixes
  • Loading branch information
ViktorHofer committed May 26, 2025
commit 91bfbd1ef766f9c9663a86cebc49c0ed9b6e0e4c
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ done
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"

# Common settings
binary_log=false
binary_log=''
configuration='Release'
verbosity='minimal'

Expand Down
2 changes: 1 addition & 1 deletion eng/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Param(
[switch]$ci,
[switch][Alias('cwb')]$cleanWhileBuilding,
[switch][Alias('nobl')]$excludeCIBinarylog,
[bool]$nodeReuse = $true,
[bool]$nodeReuse,
[switch]$prepareMachine,
[string]$projects,
[bool] $warnAsError,
Expand Down
Loading
0