Update build.proj to make the build mode clearer (#18913)
This commit is contained in:
parent
a36d3611ed
commit
7fc4318b30
1 changed files with 4 additions and 2 deletions
|
@ -11,10 +11,12 @@
|
||||||
|
|
||||||
<Target Name="Build">
|
<Target Name="Build">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<SourceOnlyInfoText Condition="'$(DotNetBuildSourceOnly)' == 'true'"> (source-only)</SourceOnlyInfoText>
|
<BuildModeInfoText Condition="'$(DotNetBuildSourceOnly)' == 'true'">source-build</BuildModeInfoText>
|
||||||
|
<BuildModeInfoText Condition="'$(DotNetBuildSourceOnly)' != 'true'">non-source-build</BuildModeInfoText>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Message Text="Build Environment$(SourceOnlyInfoText): $(TargetArchitecture) $(Configuration) $(TargetOS) $(TargetRid)" Importance="high" />
|
<Message Text="Build Mode: $(BuildModeInfoText)" Importance="high" />
|
||||||
|
<Message Text="Build Environment: $(TargetArchitecture) $(Configuration) $(TargetOS) $(TargetRid)" Importance="high" />
|
||||||
|
|
||||||
<MSBuild Projects="$(ToolsDir)init-build.proj;
|
<MSBuild Projects="$(ToolsDir)init-build.proj;
|
||||||
$(RepoProjectsDir)$(RootRepo).proj"
|
$(RepoProjectsDir)$(RootRepo).proj"
|
||||||
|
|
Loading…
Reference in a new issue