Skip to content

Commit

Permalink
Refactored namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
hhariri committed Dec 12, 2010
1 parent c72ec3a commit 6da1f63
Show file tree
Hide file tree
Showing 14 changed files with 8,974 additions and 350 deletions.
7 changes: 2 additions & 5 deletions build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,17 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProjectFolder>..\src\</ProjectFolder>
<MSpec>..\src\packages\mspec\mspec.exe</MSpec>
<dotCover>x:\TeamCity\buildAgent\plugins\dotCover\bin\dotCover.exe</dotCover>
<mspec>..\src\packages\mspec\mspec.exe</mspec>
<dotCover>dotCover.exe</dotCover>
</PropertyGroup>
<Target Name="Build">

<MSBuild Projects="$(ProjectFolder)\EasyHttp.sln"/>
</Target>

<Target Name="TeamCity" DependsOnTargets="Build">
<Exec Command="$(mspec) $(ProjectFolder)EasyHttp.Specs\bin\debug\EasyHttp.Specs.dll --teamcity"/>
<!--<Message Text="##teamcity[dotNetCoverage dotcover_home='x:\TeamCity\buildAgent\plugins\dotCover']" />-->
<Exec Command="$(dotCover) c dotcover.xml"/>
<Message Text="##teamcity[importData type='dotNetCoverage' tool='dotcover' path='build\coverage.xml']"/>

</Target>

</Project>
3 changes: 1 addition & 2 deletions build/dotcover.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<CoverageParams>
<Executable>X:\Projects\EasyHttp\src\packages\mspec\mspec.exe</Executable>
<Arguments>X:\Projects\EasyHttp\src\EasyHttp.Specs\bin\Debug\EasyHttp.Specs.dll --teamcity</Arguments>
<Arguments>X:\Projects\EasyHttp\src\EasyHttp.Specs\bin\Debug\EasyHttp.Specs.dll</Arguments>
<Output>coverage.xml</Output>

<Filters>
<ExcludeFilters>
<FilterEntry>
Expand Down
5 changes: 5 additions & 0 deletions build/r.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<ReportParams>
<Source>coverage.xml</Source>
<Output>test.xml</Output>
</ReportParams>
8,738 changes: 8,738 additions & 0 deletions build/test.xml

Large diffs are not rendered by default.

10 changes: 2 additions & 8 deletions src/EasyHttp.Specs/EasyHttp.Specs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,8 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Specifications\Authentication\BasicAuthFeatures.cs" />
<Compile Include="Specifications\Infrastructure\DynamicFeatures.cs" />
<Compile Include="Specifications\Http\HEADFeatures.cs" />
<Compile Include="Specifications\Http\DELETEFeatures.cs" />
<Compile Include="Specifications\Http\GETFeatures.cs" />
<Compile Include="Specifications\Http\InitFeatures.cs" />
<Compile Include="Specifications\Http\POSTFeatures.cs" />
<Compile Include="Specifications\Http\PUTFeatures.cs" />
<Compile Include="Specs\DynamicSpecs.cs" />
<Compile Include="Specs\HttpSpecs.cs" />
<Compile Include="Helpers\Customer.cs" />
<Compile Include="Helpers\CustomCodecClass.cs" />
<Compile Include="Helpers\DynamicClass.cs" />
Expand Down

This file was deleted.

52 changes: 0 additions & 52 deletions src/EasyHttp.Specs/Specifications/Http/DELETEFeatures.cs

This file was deleted.

115 changes: 0 additions & 115 deletions src/EasyHttp.Specs/Specifications/Http/GETFeatures.cs

This file was deleted.

32 changes: 0 additions & 32 deletions src/EasyHttp.Specs/Specifications/Http/HEADFeatures.cs

This file was deleted.

18 changes: 0 additions & 18 deletions src/EasyHttp.Specs/Specifications/Http/InitFeatures.cs

This file was deleted.

42 changes: 0 additions & 42 deletions src/EasyHttp.Specs/Specifications/Http/POSTFeatures.cs

This file was deleted.

Loading

0 comments on commit 6da1f63

Please sign in to comment.