Code Monkey home page Code Monkey logo

Comments (2)

jmelosegui avatar jmelosegui commented on June 10, 2024

@AArnott,

I did some benchmarking to the build process and here are the results:

Tests
To run the build (from command line) with and without the Create-PInvokeTxtFile.ps1 script and then with a dummy version of the powersell scrtipt whose sole job is to output a text to the MSBuild log, and hence removing the reflection algorithm from the build time.

Hardware
Processor: Intel Core i7-4712Q CPU @ 2.30GHz 2.30GHz
Memory Ram: 16 GB
System Type: 64-bit OS

MSBuild single process

Test Build Time
with ps script 26-27 sec
without ps script 14 sec
with dummy ps script 24-25 sec

MSBuild concurrent processes (/m switch 8 cores)

Test Build Time
with ps script 12-14 sec
without ps script 7-9 sec
with dummy ps script 11-13 sec

The fact that MSBuild spawn powershell once per project using the PInvoke.Extra.targets makes the build process time two times slower (regardless of the process time to generate the LIBNAME.pinvokes.txt file).

We should consider to generate the LIBNAME.pinvokes.txt files at the end of the build process, and change the process in such a way that powershell is loaded just one time to generate the files for all dlls.

Thoughts?

from pinvoke.

AArnott avatar AArnott commented on June 10, 2024

MSBuild doesn't provide a way to do something at the end of a build process like that. But we could remove the Target that does the work from the standard Build pipeline so that you have to run some other target for it to do the work. Alternatively, we could put a Condition attribute on the target itself so that although it's part of Build, it only does something when MSBuild is run from the command line with /p:GeneratePInvokesTxt=true. I'm leaning toward that option.

from pinvoke.

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.