Skip to content

Switch to new VMR control set #17703

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 12 commits into from
Sep 16, 2024
Merged
Prev Previous commit
Next Next commit
Only build proto repo in inner build
  • Loading branch information
mmitche committed Sep 13, 2024
commit 7fd456927aa01664a0effe5103e6c84dd91fe194
6 changes: 4 additions & 2 deletions proto.proj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
<RootDir Condition="'$(RootDir)'==''">Bootstrap</RootDir>
</PropertyGroup>

<!-- Skip on source only builds. -->
<ItemGroup Condition="'$(DotNetBuildSourceOnly)'!='true'">
<!-- This needs to be built only in the inner VMR build proto invocation, but not the outer VMR build invocation.
The project does not import Arcade targets so we only have the properties that were passed in, rather than
calculated properties like DotNetBuildPhase. -->
<ItemGroup Condition="'$(DotNetBuildSourceOnly)'!='true' or '$(DotNetBuildInnerRepo)' == 'true'">
<Projects Include="buildtools\fslex\fslex.fsproj" />
<Projects Include="buildtools\fsyacc\fsyacc.fsproj" />
<Projects Include="buildtools\AssemblyCheck\AssemblyCheck.fsproj" />
Expand Down
Loading