Click here to Skip to main content
15,885,244 members
Articles / Web Development / ASP.NET

Azure Blob and Entity Table Integration, Extending the Thumbnail Sample

Rate me:
Please Sign up or sign in to vote.
4.54/5 (5 votes)
19 May 2010CPOL7 min read 31.8K   330   11  
This article describes the concepts for doing CRUD (Create, Read, Update, Delete) operations on Windows Azure Tables and how table data can interact with blobs.
@echo off
setlocal
:: Check for 64-bit Framework
if exist %SystemRoot%\Microsoft.NET\Framework64\v3.5 (
  set msbuild=%SystemRoot%\Microsoft.NET\Framework64\v3.5\msbuild.exe
  goto :run
)
:: Check for 32-bit Framework
if exist %SystemRoot%\Microsoft.NET\Framework\v3.5 (
  set msbuild=%SystemRoot%\Microsoft.NET\Framework\v3.5\msbuild.exe
  goto :run
)

:run
pushd %~dp0
if exist setvcvars.cmd (
   call setvcvars.cmd
)
:: Build all .proj file

set AtLeastOneProjBuilt=false
for %%i in (*.proj) do (
  %msbuild% %%i /t:ReBuild %*
  set AtLeastOneProjBuilt=true
)

if [%AtLeastOneProjBuilt%]==[true] goto :end

:: Build frist .sln file
for %%i in (*.sln) do (
 %msbuild% %%i /t:ReBuild %*
 goto :end
)

:end
popd

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
Vijay Kumar: Architect, Programmer with expertise and interest in Azure, .net, Silverlight, C#, WCF, MVC, databases and mobile development. Concentrating on Windows Phone 7 and Windows Azure development. Lived in California for many years and done many exciting projects in dotnet and Windows platforms. Moved to Raleigh (RTP), North Carolina recently and available for consulting.  Blog http://Silverazure.blogspot.com.

Comments and Discussions