Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from veena-udayabhanu/master
Browse files Browse the repository at this point in the history
Minor unit test fix
  • Loading branch information
Serdar Ozler committed Nov 23, 2013
2 parents 928ce7c + 48f55cc commit 4a74fce
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Test/ClassLibraryCommon/Table/CloudTableClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,6 @@ private void DoListTablesWithPrefixBasic(TablePayloadFormat format)
public void ListTablesWithPrefixExtended()
{
DoListTablesWithPrefixExtended(TablePayloadFormat.Json);
Thread.Sleep(30000);
DoListTablesWithPrefixExtended(TablePayloadFormat.JsonNoMetadata);
Thread.Sleep(30000);
DoListTablesWithPrefixExtended(TablePayloadFormat.AtomPub);
}

private void DoListTablesWithPrefixExtended(TablePayloadFormat format)
Expand Down
49 changes: 49 additions & 0 deletions build.proj
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<?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=".\Lib\WindowsDesktop\Microsoft.WindowsAzure.Storage.csproj" />
<StorageSln Include=".\Lib\WindowsRuntime\Microsoft.WindowsAzure.Storage.csproj" />
<StorageSln Include=".\Lib\WindowsRuntimeTable\Microsoft.WindowsAzure.Storage.Table.csproj" />
<StorageSln Include=".\Lib\WindowsPhone\Microsoft.WindowsAzure.Storage.csproj" />
</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" />
</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" />
</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" />
</Target>
</Project>

0 comments on commit 4a74fce

Please sign in to comment.