clone a solution containing a project using Antlr4.CodeGenerator
restore nuget packages
build
I get build errors for the project.
To fix it, I have to unload and reload the project that has Antlr4.CodeGen.
The reason appears to be because the project file imports Antlr4.CodeGenerator.props and Antlr4.CodeGenerator.targets. The project file is loaded at step #1, before those files are available at step #2.
Is there a way to get the build to work without the unload/reload step?
Here's the steps I follow:
I get build errors for the project.
To fix it, I have to unload and reload the project that has Antlr4.CodeGen.
The reason appears to be because the project file imports Antlr4.CodeGenerator.props and Antlr4.CodeGenerator.targets. The project file is loaded at step #1, before those files are available at step #2.
Is there a way to get the build to work without the unload/reload step?