Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
_ReSharper*
*.suo
packages
bin
obj
50 changes: 27 additions & 23 deletions AutomatedTester.BrowserMob/AutomatedTester.BrowserMob.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json.Net20">
<HintPath>..\ThirdParty\Newtonsoft.Json.Net20.dll</HintPath>
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Newtonsoft.Json.6.0.6\lib\net35\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand All @@ -44,28 +45,31 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Client.cs" />
<Compile Include="HAR\Browser.cs" />
<Compile Include="HAR\Cache.cs" />
<Compile Include="HAR\CacheEntry.cs" />
<Compile Include="HAR\Content.cs" />
<Compile Include="HAR\Cookie.cs" />
<Compile Include="HAR\Creator.cs" />
<Compile Include="HAR\Entry.cs" />
<Compile Include="HAR\HarResult.cs" />
<Compile Include="HAR\Header.cs" />
<Compile Include="HAR\Log.cs" />
<Compile Include="HAR\Page.cs" />
<Compile Include="HAR\PageTimings.cs" />
<Compile Include="HAR\Param.cs" />
<Compile Include="HAR\PostData.cs" />
<Compile Include="HAR\QueryStringItem.cs" />
<Compile Include="HAR\Request.cs" />
<Compile Include="HAR\Response.cs" />
<Compile Include="HAR\Timings.cs" />
<Compile Include="LimitOptions.cs" />
<Compile Include="Server.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="src\ProxyClient.cs" />
<Compile Include="src\HAR\Browser.cs" />
<Compile Include="src\HAR\Cache.cs" />
<Compile Include="src\HAR\CacheEntry.cs" />
<Compile Include="src\HAR\Content.cs" />
<Compile Include="src\HAR\Cookie.cs" />
<Compile Include="src\HAR\Creator.cs" />
<Compile Include="src\HAR\Entry.cs" />
<Compile Include="src\HAR\HarResult.cs" />
<Compile Include="src\HAR\Header.cs" />
<Compile Include="src\HAR\Log.cs" />
<Compile Include="src\HAR\Page.cs" />
<Compile Include="src\HAR\PageTimings.cs" />
<Compile Include="src\HAR\Param.cs" />
<Compile Include="src\HAR\PostData.cs" />
<Compile Include="src\HAR\QueryStringItem.cs" />
<Compile Include="src\HAR\Request.cs" />
<Compile Include="src\HAR\Response.cs" />
<Compile Include="src\HAR\Timings.cs" />
<Compile Include="src\LimitOptions.cs" />
<Compile Include="src\Server.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
18 changes: 18 additions & 0 deletions AutomatedTester.BrowserMob/AutomatedTester.BrowserMob.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>$title$</title>
<authors>$author$</authors>
<owners>$author$</owners>
<licenseUrl>http://LICENSE_URL_HERE_OR_DELETE_THIS_LINE</licenseUrl>
<projectUrl>http://PROJECT_URL_HERE_OR_DELETE_THIS_LINE</projectUrl>
<iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
<copyright>Copyright 2014</copyright>
<tags>Tag1 Tag2</tags>
</metadata>
</package>
176 changes: 0 additions & 176 deletions AutomatedTester.BrowserMob/Client.cs

This file was deleted.

Binary file not shown.
4 changes: 4 additions & 0 deletions AutomatedTester.BrowserMob/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net35" />
</packages>
Loading