Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Windows Azure Storage Client Library for C++ v0.2.0 #1

Merged
merged 3 commits into from Dec 18, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 92 additions & 0 deletions Microsoft.WindowsAzure.Storage.autopkg
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;
}
}
}
26 changes: 26 additions & 0 deletions Microsoft.WindowsAzure.Storage.sln
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
28 changes: 28 additions & 0 deletions Microsoft.WindowsAzure.Storage.v120.sln
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
Loading