Skip to content

Commit

Permalink
Adding CI server files
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Dec 22, 2012
1 parent b0332b8 commit e77568f
Show file tree
Hide file tree
Showing 3 changed files with 121 additions and 0 deletions.
@@ -0,0 +1,20 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Microsoft.WindowsAzure.ConfigurationManager</id>
<version>1.8.0.0</version>
<title>Windows Azure Configuration Manager</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<licenseUrl>http://go.microsoft.com/fwlink/?LinkID=235167</licenseUrl>
<projectUrl>http://go.microsoft.com/fwlink/?linkid=252450</projectUrl>
<iconUrl>http://www.gravatar.com/avatar/c24270713c524575b0308e05c7e9ff61?s=128</iconUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>Windows Azure Configuration Manager provides unified API to load the configuration settings regardless of where the application is hosted - whether on-premises or in a Cloud Service.</description>
<summary>Windows Azure Configuration Manager provides unified API to load the configuration settings regardless of where the application is hosted - whether on-premises or in a Cloud Service.</summary>
<tags>Microsoft, Azure, Configuration, Configuration Manager, Cloud windowsazureofficial</tags>
<references>
<reference file="Microsoft.WindowsAzure.Configuration.dll" />
</references>
</metadata>
</package>
@@ -0,0 +1,32 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>WindowsAzure.Storage</id>
<version>2.0.3.0</version>
<title>Windows Azure Storage</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<licenseUrl>http://go.microsoft.com/fwlink/?LinkId=235170</licenseUrl>
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=235168</projectUrl>
<iconUrl>http://www.gravatar.com/avatar/c24270713c524575b0308e05c7e9ff61?s=128</iconUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<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.
For this release see notes - http://msdn.microsoft.com/en-us/library/windowsazure/jj721952.aspx
Windows Azure Storage team's blog - http://blogs.msdn.com/b/windowsazurestorage/</description>
<summary>A client library for working with Windows Azure storage services including blobs, tables, and queues.</summary>
<tags>Microsoft, Azure, Storage, Table, Blob, Queue, Scalable, windowsazureofficial</tags>
<dependencies>
<dependency id="Microsoft.Data.OData" version="5.0.2" />
<dependency id="Microsoft.WindowsAzure.ConfigurationManager" version="1.8.0.0" />
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Data" targetFramework="" />
<frameworkAssembly assemblyName="System.Xml" targetFramework="" />
<frameworkAssembly assemblyName="System.Xml.Linq" targetFramework="" />
<frameworkAssembly assemblyName="System.Data.Services.Client" targetFramework="" />
</frameworkAssemblies>
<references>
<reference file="Microsoft.WindowsAzure.Storage.dll" />
</references>
</metadata>
</package>
69 changes: 69 additions & 0 deletions microsoft-azure-api/build.proj
@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="utf-8"?>
<Project
xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
ToolsVersion="4.0"
DefaultTargets="Clean;BuildDebug;BuildReleaseSigned">

<ItemGroup>
<StorageSln Include=".\Services\Storage\Lib\DotNet40\DotNet40.csproj" />
<StorageSln Include=".\Services\Storage\Lib\RT\RT.csproj" />
<StorageSln Include=".\Services\Storage\Lib\RTTable\RTTable.csproj" />
<ConfigSln Include=".\Configuration\microsoft-windowsazure-configuration.sln" />
</ItemGroup>

<!-- Clean the build in all configurations -->
<Target Name="Clean">
<!-- Clean the solutions -->
<Message Importance="high" Text="Cleaning the projects..." ContinueOnError="true" />
<MSBuild
Projects="@(StorageSln)"
Targets="Clean"
Properties="Configuration=Debug"
ContinueOnError="true" />
<MSBuild
Projects="@(StorageSln)"
Targets="Clean"
Properties="Configuration=Release"
ContinueOnError="true" />
<MSBuild
Projects="@(ConfigSln)"
Targets="Clean"
Properties="Configuration=Debug"
ContinueOnError="true" />
<MSBuild
Projects="@(ConfigSln)"
Targets="Clean"
Properties="Configuration=ReleaseSigned"
ContinueOnError="true" />
</Target>

<!-- Build the Cmdlets in ReleaseSigned configuration -->
<Target Name="BuildReleaseSigned">
<Message Importance="high" Text="Building release version of the projects..." />
<MSBuild
Projects="@(StorageSln)"
Targets="Build"
Properties="Configuration=Release"
ContinueOnError="true" />
<MSBuild
Projects="@(ConfigSln)"
Targets="Build"
Properties="Configuration=ReleaseSigned"
ContinueOnError="true" />
</Target>

<!-- Build the Cmdlets in Debug configuration -->
<Target Name="BuildDebug">
<Message Importance="high" Text="Building debug version the projects..." />
<MSBuild
Projects="@(StorageSln)"
Targets="Build"
Properties="Configuration=Debug"
ContinueOnError="true" />
<MSBuild
Projects="@(ConfigSln)"
Targets="Build"
Properties="Configuration=Debug"
ContinueOnError="true" />
</Target>
</Project>

0 comments on commit e77568f

Please sign in to comment.