Git Product home page Git Product logo

Comments (3)

michaelhthomas avatar michaelhthomas commented on August 29, 2024 1

All good! This ended up being due to the project not building due to compilation errors. It was an ASP.NET framework project, and several of the custom MSBuild targets weren't working in Buildalyzer. I was able to get it working by debugging and looking at the diagnostics on the compilation object. Would be nice if MSBuild errors / warnings could be automatically proxied to sdout or something to make things like this a bit easier to diagnose.

from buildalyzer.

daveaglick avatar daveaglick commented on August 29, 2024 1

The choice not to write directly to stdout or stderr was intentional - I didn't know how consumers would be using the library, and I didn't want a bunch of stuff that wasn't intended to be surfaced bubbling up. That said, you can hook the captured output streams with either a ILoggerFactory or a TextWriter and forward them to your application's output:

StringWriter log = new StringWriter();
IProjectAnalyzer analyzer = new AnalyzerManager(
    new AnalyzerManagerOptions
    {
        LogWriter = log
    })
    .GetProject(projectFile);

from buildalyzer.

daveaglick avatar daveaglick commented on August 29, 2024

Sorry for the delay - been swamped at the actual day job recently.

We've seen issues with some project types that use a custom SDK because they essentially bypass a lot of the work that MSBuild does and that Buildalyzer is configured to find. Can you share an example project file for a project that you're seeing this problem for?

from buildalyzer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.