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

Commit 37e44a6

Browse files
author
joeg
committed
Merge pull request #4 from WindowsAzure/dev
Windows Azure Storage Client Library for C++ v0.2.0
2 parents 3993579 + 4f22d9c commit 37e44a6

File tree

239 files changed

+61362
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+61362
-2
lines changed
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
nuget {
2+
nuspec {
3+
id = wastorage;
4+
version: 0.2.0-preview;
5+
title: Microsoft Windows Azure Storage Client Library for C++;
6+
authors: {Microsoft Corporation};
7+
owners: {Microsoft Corporation};
8+
licenseUrl: "http://go.microsoft.com/fwlink/?LinkId=235170";
9+
projectUrl: "http://go.microsoft.com/fwlink/?LinkId=235168";
10+
iconUrl: "http://go.microsoft.com/fwlink/?LinkID=288890";
11+
summary: "A client library for working with Windows Azure storage services including blobs, tables, and queues.";
12+
description: @"This client library enables working with the Windows Azure storage services
13+
which include the blob service for storing binary and text data, the table service for storing
14+
structured non-relational data, and the queue service for storing messages that may be accessed by a client.
15+
Windows Azure Storage team's blog - http://blogs.msdn.com/b/windowsazurestorage/";
16+
releaseNotes: "Preview release";
17+
tags: { Microsoft, Azure, Storage, Table, Blob, Queue, Scalable, windowsazureofficial };
18+
}
19+
20+
dependencies {
21+
packages: {
22+
cpprestsdk/1.3.1
23+
};
24+
}
25+
26+
files {
27+
#defines {
28+
SDK_SRC = \Microsoft.WindowsAzure.Storage;
29+
SDK_2012 = \Microsoft.WindowsAzure.Storage\v110;
30+
SDK_2013 = \Microsoft.WindowsAzure.Storage\v120;
31+
}
32+
33+
nestedWASInclude: {
34+
#destination = ${d_include}\was;
35+
"${SDK_SRC}\includes\was\*",
36+
};
37+
38+
nestedWASCoreInclude: {
39+
#destination = ${d_include}\wascore;
40+
"${SDK_SRC}\includes\wascore\basic_types.h",
41+
"${SDK_SRC}\includes\wascore\constants.h",
42+
};
43+
44+
[x86,v110,debug] {
45+
lib: ${SDK_2012}\Win32\Debug\wastorage.lib;
46+
symbols: ${SDK_2012}\Win32\Debug\wastorage.pdb;
47+
bin: ${SDK_2012}\Win32\Debug\wastorage.dll;
48+
}
49+
50+
[x86,v110,release] {
51+
lib: ${SDK_2012}\Win32\Release\wastorage.lib;
52+
symbols: ${SDK_2012}\Win32\Release\wastorage.pdb;
53+
bin: ${SDK_2012}\Win32\Release\wastorage.dll;
54+
}
55+
56+
[x64,v110,debug] {
57+
lib: ${SDK_2012}\x64\Debug\wastorage.lib;
58+
symbols: ${SDK_2012}\x64\Debug\wastorage.pdb;
59+
bin: ${SDK_2012}\x64\Debug\wastorage.dll;
60+
}
61+
62+
[x64,v110,release] {
63+
lib: ${SDK_2012}\x64\Release\wastorage.lib;
64+
symbols: ${SDK_2012}\x64\Release\wastorage.pdb;
65+
bin: ${SDK_2012}\x64\Release\wastorage.dll;
66+
}
67+
68+
[x86,v120,debug] {
69+
lib: ${SDK_2013}\Win32\Debug\wastorage.lib;
70+
symbols: ${SDK_2013}\Win32\Debug\wastorage.pdb;
71+
bin: ${SDK_2013}\Win32\Debug\wastorage.dll;
72+
}
73+
74+
[x86,v120,release] {
75+
lib: ${SDK_2013}\Win32\Release\wastorage.lib;
76+
symbols: ${SDK_2013}\Win32\Release\wastorage.pdb;
77+
bin: ${SDK_2013}\Win32\Release\wastorage.dll;
78+
}
79+
80+
[x64,v120,debug] {
81+
lib: ${SDK_2013}\x64\Debug\wastorage.lib;
82+
symbols: ${SDK_2013}\x64\Debug\wastorage.pdb;
83+
bin: ${SDK_2013}\x64\Debug\wastorage.dll;
84+
}
85+
86+
[x64,v120,release] {
87+
lib: ${SDK_2013}\x64\Release\wastorage.lib;
88+
symbols: ${SDK_2013}\x64\Release\wastorage.pdb;
89+
bin: ${SDK_2013}\x64\Release\wastorage.dll;
90+
}
91+
}
92+
}

Microsoft.WindowsAzure.Storage.sln

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.WindowsAzure.Storage", "Microsoft.WindowsAzure.Storage\Microsoft.WindowsAzure.Storage.vcxproj", "{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Win32 = Debug|Win32
9+
Debug|x64 = Debug|x64
10+
Release|Win32 = Release|Win32
11+
Release|x64 = Release|x64
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|Win32.ActiveCfg = Debug|Win32
15+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|Win32.Build.0 = Debug|Win32
16+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|x64.ActiveCfg = Debug|x64
17+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|x64.Build.0 = Debug|x64
18+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|Win32.ActiveCfg = Release|Win32
19+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|Win32.Build.0 = Release|Win32
20+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|x64.ActiveCfg = Release|x64
21+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|x64.Build.0 = Release|x64
22+
EndGlobalSection
23+
GlobalSection(SolutionProperties) = preSolution
24+
HideSolutionNode = FALSE
25+
EndGlobalSection
26+
EndGlobal
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.21005.1
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.WindowsAzure.Storage.v120", "Microsoft.WindowsAzure.Storage\Microsoft.WindowsAzure.Storage.v120.vcxproj", "{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Win32 = Debug|Win32
11+
Debug|x64 = Debug|x64
12+
Release|Win32 = Release|Win32
13+
Release|x64 = Release|x64
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|Win32.ActiveCfg = Debug|Win32
17+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|Win32.Build.0 = Debug|Win32
18+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|x64.ActiveCfg = Debug|x64
19+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Debug|x64.Build.0 = Debug|x64
20+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|Win32.ActiveCfg = Release|Win32
21+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|Win32.Build.0 = Release|Win32
22+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|x64.ActiveCfg = Release|x64
23+
{DCFF75B0-B142-4EC8-992F-3E48F2E3EECE}.Release|x64.Build.0 = Release|x64
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
EndGlobal

0 commit comments

Comments
 (0)