This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 371
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 #3 from veena-udayabhanu/master
Minor unit test fix
- Loading branch information
Showing
2 changed files
with
49 additions
and
4 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
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,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> |