Austin F# Meetup


    There’s a brand new meetup in the ATX. The Austin F# Meetup is having their first meeting on Tuesday, May 6th. Check it out!

    Tip to become a successful software engineer


    Never ask a question without a failing test.

    Sample script for SolutionScripts


    Question came up.. what sort of scripts do you use with SolutionScripts?

    Here’s one that does the ASP.NET compile thing.  Stick it in your SolutionScripts directory and you can run aspcomp from the Nuget console.

    SolutionScripts – little scripts for the Nuget console


    Sharing a Nuget package our team has been using for awhile: SolutionScripts.  It’s ridiculously simple, more of an idea than anything else.

    It runs the PowerShell scripts we put in a conventional folder.  We can version those scripts with our source code.  The scripts usually expose a global function to the package manager console.

    This is from the project’s readme:

    When Visual Studio opens a solution, Nuget looks at each installed package for an init.ps1 script in the package’s tools directory. If that script exists it will be executed. This is the way that package authors enhance the package manager console experience for consumers of their packages.

    However, sometimes developers want to add functions or custom script that will execute in the package manager console independent of a particular package. In this case, a lone developer can customize the powershell profile that the package manager console uses.

    This doesn’t scale. When sharing custom scripts and global functions across an entire team for a particular project, it doesn’t make sense to edit each developer’s profile. The profile works across multiple solutions. That would also be weird, to edit a user’s profile automatically. It also doesn’t make sense to install a custom package just for each global function you wanted to register. You could do that, but you’d then have a billion highly targeted packages in your solution. Also, we like these scripts to be versioned with our source code.

    With SolutionScripts you can place custom scripts in the SolutionScripts directory (which by convention sits at the same level as the packages directory). SolutionScripts will run them every time you load up the solution. If you want to refresh the scripts in the SolutionScripts directory without reloading the solution, just issue the Update-SolutionScripts command in the package manager console.

subscribe via RSS