Replies: 1 comment 3 replies
-
Hi @ryzngard We primarily use buildalyzer for project information discovery. Buildalyzer executes msbuild against the project file and reads the output, so variable replacement is not an issue. Buildalyzer actually supports msbuildlog as well, but I don't think this is more useful than running Buildalyzer directly. I'm not sure if buildalyzer has support for razor projects, I would look there first. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was evaluating if stryker-net could be run on https://github.com/dotnet/razor and with my very limited knowledge it just doesn't. Trying to debug I'm guessing it's because of the heavy use of variable replacement in project files for things like target framework. I see a lot of code related to parsing project/solution files and was wondering: would it be easier to support a structure log output from something like
dotnet build -bl
and read in the necessary properties. That would give the complete requirements for what final evaluations are when restore/compile happens.Beta Was this translation helpful? Give feedback.
All reactions