Fix IntelliSense issues in projects that reference both Antlr3.targets and Antlr4.targets

This commit is contained in:
Sam Harwell 2013-02-28 20:15:15 -06:00
parent c9ababc081
commit a47c2933e9
1 changed files with 2 additions and 2 deletions

View File

@ -100,12 +100,12 @@
<!-- Add grammar compilation to the CoreCompileDependsOn so that the IDE inproc compilers (particularly VB)
can "see" the generated source files. -->
<CoreCompileDependsOn Condition="'$(BuildingInsideVisualStudio)' == 'true' ">
DesignTimeGrammarCompilation;
Antlr4DesignTimeGrammarCompilation;
$(CoreCompileDependsOn)
</CoreCompileDependsOn>
</PropertyGroup>
<Target Name="DesignTimeGrammarCompilation">
<Target Name="Antlr4DesignTimeGrammarCompilation">
<!-- Only if we are not actually performing a compile i.e. we are in design mode -->
<CallTarget Condition="'$(BuildingProject)' != 'true'"
Targets="Antlr4Compile" />