Create MS Build script and deploy to azure using MS Build

Unanswered Create MS Build script and deploy to azure using MS Build

  • Wednesday, May 09, 2012 3:07 PM
     
     
    Can someone help me how to create ms build script to deploy to windows azure using MS Build.
    • Moved by Vicky Song Thursday, May 10, 2012 6:00 AM (From:Team Foundation Server - General)
    •  

All Replies

  • Wednesday, May 09, 2012 8:02 PM
     
     
    Can someone help me how to auto deploy windows azure application using MS Build and powershell cmdlet.
    • Merged by Vicky Song Thursday, May 10, 2012 6:06 AM same issue
    •  
  • Thursday, May 10, 2012 5:57 AM
     
     

    Hi swetha,

    I am moving your case to the MSBuild forum so that you can get better support there.

    Thanks.


    Vicky Song [MSFT]
    MSDN Community Support | Feedback to us

  • Friday, May 11, 2012 6:51 AM
    Moderator
     
     

    Hi swetha9,

    A minimal project file should resemble the following code:

    <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

      <ItemGroup>

        <Compile Include="helloworld.cs" />

      </ItemGroup>

      <Target Name="Build">

        <Csc Sources="@(Compile)"/> 

      </Target>

    </Project>

    You can take a look at the following reference to learn how to create a msbuild script.

    Walkthrough: Creating an MSBuild Project File from Scratch:

    http://msdn.microsoft.com/en-us/library/dd576348.aspx

    Walkthrough: Using MSBuild:

    http://msdn.microsoft.com/en-us/library/dd393573

    And we can create a package for Windows Azure deployment by running MSBuild at a command prompt.

    More information: http://msdn.microsoft.com/en-us/library/windowsazure/hh535755.aspx


    Lucy Liu [MSFT]
    MSDN Community Support | Feedback to us

    • Marked As Answer by lucy-liuModerator Thursday, May 17, 2012 6:13 AM
    • Unmarked As Answer by swetha9 Friday, May 18, 2012 6:33 PM
    •