-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from WindowsAzure/dev
Windows Azure Storage Client Library for C++ v0.2.0
- Loading branch information
Showing
239 changed files
with
61,362 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
nuget { | ||
nuspec { | ||
id = wastorage; | ||
version: 0.2.0-preview; | ||
title: Microsoft Windows Azure Storage Client Library for C++; | ||
authors: {Microsoft Corporation}; | ||
owners: {Microsoft Corporation}; | ||
licenseUrl: "http://go.microsoft.com/fwlink/?LinkId=235170"; | ||
projectUrl: "http://go.microsoft.com/fwlink/?LinkId=235168"; | ||
iconUrl: "http://go.microsoft.com/fwlink/?LinkID=288890"; | ||
summary: "A client library for working with Windows Azure storage services including blobs, tables, and queues."; | ||
description: @"This client library enables working with the Windows Azure storage services | ||
which include the blob service for storing binary and text data, the table service for storing | ||
structured non-relational data, and the queue service for storing messages that may be accessed by a client. | ||
Windows Azure Storage team's blog - http://blogs.msdn.com/b/windowsazurestorage/"; | ||
releaseNotes: "Preview release"; | ||
tags: { Microsoft, Azure, Storage, Table, Blob, Queue, Scalable, windowsazureofficial }; | ||
} | ||
|
||
dependencies { | ||
packages: { | ||
cpprestsdk/1.3.1 | ||
}; | ||
} | ||
|
||
files { | ||
#defines { | ||
SDK_SRC = \Microsoft.WindowsAzure.Storage; | ||
SDK_2012 = \Microsoft.WindowsAzure.Storage\v110; | ||
SDK_2013 = \Microsoft.WindowsAzure.Storage\v120; | ||
} | ||
|
||
nestedWASInclude: { | ||
#destination = ${d_include}\was; | ||
"${SDK_SRC}\includes\was\*", | ||
}; | ||
|
||
nestedWASCoreInclude: { | ||
#destination = ${d_include}\wascore; | ||
"${SDK_SRC}\includes\wascore\basic_types.h", | ||
"${SDK_SRC}\includes\wascore\constants.h", | ||
}; | ||
|
||
[x86,v110,debug] { | ||
lib: ${SDK_2012}\Win32\Debug\wastorage.lib; | ||
symbols: ${SDK_2012}\Win32\Debug\wastorage.pdb; | ||
bin: ${SDK_2012}\Win32\Debug\wastorage.dll; | ||
} | ||
|
||
[x86,v110,release] { | ||
lib: ${SDK_2012}\Win32\Release\wastorage.lib; | ||
symbols: ${SDK_2012}\Win32\Release\wastorage.pdb; | ||
bin: ${SDK_2012}\Win32\Release\wastorage.dll; | ||
} | ||
|
||
[x64,v110,debug] { | ||
lib: ${SDK_2012}\x64\Debug\wastorage.lib; | ||
symbols: ${SDK_2012}\x64\Debug\wastorage.pdb; | ||
bin: ${SDK_2012}\x64\Debug\wastorage.dll; | ||
} | ||
|
||
[x64,v110,release] { | ||
lib: ${SDK_2012}\x64\Release\wastorage.lib; | ||
symbols: ${SDK_2012}\x64\Release\wastorage.pdb; | ||
bin: ${SDK_2012}\x64\Release\wastorage.dll; | ||
} | ||
|
||
[x86,v120,debug] { | ||
lib: ${SDK_2013}\Win32\Debug\wastorage.lib; | ||
symbols: ${SDK_2013}\Win32\Debug\wastorage.pdb; | ||
bin: ${SDK_2013}\Win32\Debug\wastorage.dll; | ||
} | ||
|
||
[x86,v120,release] { | ||
lib: ${SDK_2013}\Win32\Release\wastorage.lib; | ||
symbols: ${SDK_2013}\Win32\Release\wastorage.pdb; | ||
bin: ${SDK_2013}\Win32\Release\wastorage.dll; | ||
} | ||
|
||
[x64,v120,debug] { | ||
lib: ${SDK_2013}\x64\Debug\wastorage.lib; | ||
symbols: ${SDK_2013}\x64\Debug\wastorage.pdb; | ||
bin: ${SDK_2013}\x64\Debug\wastorage.dll; | ||
} | ||
|
||
[x64,v120,release] { | ||
lib: ${SDK_2013}\x64\Release\wastorage.lib; | ||
symbols: ${SDK_2013}\x64\Release\wastorage.pdb; | ||
bin: ${SDK_2013}\x64\Release\wastorage.dll; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2012 | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.WindowsAzure.Storage", "Microsoft.WindowsAzure.Storage\Microsoft.WindowsAzure.Storage.vcxproj", "{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Win32 = Debug|Win32 | ||
Debug|x64 = Debug|x64 | ||
Release|Win32 = Release|Win32 | ||
Release|x64 = Release|x64 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|Win32.Build.0 = Debug|Win32 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|x64.ActiveCfg = Debug|x64 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|x64.Build.0 = Debug|x64 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|Win32.ActiveCfg = Release|Win32 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|Win32.Build.0 = Release|Win32 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|x64.ActiveCfg = Release|x64 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|x64.Build.0 = Release|x64 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2013 | ||
VisualStudioVersion = 12.0.21005.1 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.WindowsAzure.Storage.v120", "Microsoft.WindowsAzure.Storage\Microsoft.WindowsAzure.Storage.v120.vcxproj", "{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Win32 = Debug|Win32 | ||
Debug|x64 = Debug|x64 | ||
Release|Win32 = Release|Win32 | ||
Release|x64 = Release|x64 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|Win32.Build.0 = Debug|Win32 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|x64.ActiveCfg = Debug|x64 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|x64.Build.0 = Debug|x64 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|Win32.ActiveCfg = Release|Win32 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|Win32.Build.0 = Release|Win32 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|x64.ActiveCfg = Release|x64 | ||
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|x64.Build.0 = Release|x64 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
Oops, something went wrong.