Git Product home page Git Product logo

windows.azure.msbuild's Introduction

Overview

This repo contains a custom MSBuild Task that will allow you to copy files of your choosing to from your build server's artifact directory into a Windows Azure Cloud Storage Container.

What's Next?

Ok, so here is what you need to do...

  • Download the code from this repo
  • Compile it
  • In your MSBuild script, make a reference to the 'CopyToAzureStorage' task (i.e. the task in this repo)

What properties do I need to set?

  • Endpoint - this is the URI to your azure cloud storage, in the sample file it is set to the devstorage URI
  • StorageAccountName - this is the name of your azure storage account (in the sample it's set to devstoreaccount1)
  • StorageAccountKey - this is the key that you get when you provision an Azure Storage Acccount (int the sample its set to the default development storage account key)
  • ContainerName - this is the name of the Azure Storage Container that you want to send files to when the task is executed
  • SourceFiles - this is the list of files that you want to copy into your cloud container
  • DestinationFiles - this is a list that allows you to specify what the target files will be

Note

These values below are the default local / development storage values that are common to all out of the box Windows Azure SDK installations.

  • Endpoint: \http://127.0.0.:10000/devstoreaccount1
  • StorageAccountName: devstoreaccount1
  • StorageAccountKey: Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==

When shipping files to the REAL Azure Storage account, the Endpoint, StorageAccountName, and StorageAccountKey should be taken from the Windows Azure Portal

  • Endpoint - https://{YourStorageAccountName}.blob.core.windows.net/
  • StorageAccountName - {YourStorageAccountName} - taken from the Azure Portal
  • StorageAccountKey - {Your Access Key} - taken from the Azure Portal

Noteworthy Files

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.