Giter Site home page Giter Site logo

Comments (4)

jeffkl avatar jeffkl commented on July 18, 2024

Loggers aren't shutdown properly unless you dispose of the ProjectCollection. The code below creates a valid .binglog.

string binLogPath = Path.Combine(TestRootPath, "test.binlog");

bool result;
BuildOutput buildOutput;

using (ProjectCollection projectCollection = new ProjectCollection())
{
    projectCollection.RegisterLogger(new BinaryLogger
    {
        Parameters = $"LogFile={binLogPath}",
    });

    ProjectCreator.Create(
            projectCollection: projectCollection)
        .TaskError("Failed")
        .Save(GetTempFileName(".proj"))
        .TryBuild(out result, out buildOutput);
}

from msbuildprojectcreator.

japj avatar japj commented on July 18, 2024

It might be that the "corrupt" binlog is due to the error:

Microsoft.Build.Exceptions.InvalidProjectFileException: The SDK 'Sdk.props' specified could not be found

Perhaps MSBuild is throwing this error early/at a place where the binlog cannot be properly written.

And while writing this reply I just realized I mixed the ImportSdk name and project around, so that solves part of my problem.

It still means there is a "path" where the .binlog file cannot be written correctly/contains incomplete data.

from msbuildprojectcreator.

japj avatar japj commented on July 18, 2024

It might be that my "corrupt binlog" was actually a case of #48 , I will keep an eye out for this during new testcase development.

from msbuildprojectcreator.

jeffkl avatar jeffkl commented on July 18, 2024

Assuming this is no longer a problem, please reopen if you see it again.

from msbuildprojectcreator.

Related Issues (18)

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.