Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. .NET (Core and Framework)
  4. MSH For Building Projects

MSH For Building Projects

Scheduled Pinned Locked Moved .NET (Core and Framework)
visual-studiotools
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    Joshua Nussbaum
    wrote on last edited by
    #1

    Hey Guys, Been playing with MSH & WinFX and put together a little MSH script to build all projects on your machine which you may find helpful (especially for building the samples) MSH> $files = (dir . *.csproj -Recurse) MSH> foreach ($file in $files) {  cd $file.Directory.FullName;  msbuild; } 60% of statistics are made up on the spot

    J 1 Reply Last reply
    0
    • J Joshua Nussbaum

      Hey Guys, Been playing with MSH & WinFX and put together a little MSH script to build all projects on your machine which you may find helpful (especially for building the samples) MSH> $files = (dir . *.csproj -Recurse) MSH> foreach ($file in $files) {  cd $file.Directory.FullName;  msbuild; } 60% of statistics are made up on the spot

      J Offline
      J Offline
      Jared Parsons
      wrote on last edited by
      #2

      Because I've been playting with MSH too much lately, here's it in one line MSH> ls -recurse -fiter "*.csproj" | foreach { cd $_.FullName; msbuild} Jared Parsons jaredp@beanseed.org http://spaces.msn.com/members/jaredp/

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups