Skip to content

Commit

Permalink
Merge pull request #4 from DuncanEdwards/master
Browse files Browse the repository at this point in the history
Added the FullyLoadedTime property to the Results class
  • Loading branch information
Kevin-Bronsdijk committed Mar 31, 2018
2 parents 0eac193 + 2c599c1 commit 59148b2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.bat
@@ -1,5 +1,5 @@
@echo off
cls
"tools\NuGet\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "tools" "-ExcludeVersion"
"tools\Fake\tools\Fake.exe" "build.fsx" version=1.0.1.0
"tools\Fake\tools\Fake.exe" "build.fsx" version=1.0.2.0
pause
Binary file added nuGet/gtmetrix-net.1.0.2.0.nupkg
Binary file not shown.
6 changes: 6 additions & 0 deletions src/gtmetrix-net/Model/Results.cs
Expand Up @@ -51,5 +51,11 @@ public class Results
/// </summary>
[JsonProperty("page_elements")]
public int PageElements { get; set; }

/// <summary>
/// Fully loaded time
/// </summary>
[JsonProperty("fully_loaded_time")]
public int FullyLoadedTime { get; set; }
}
}
8 changes: 4 additions & 4 deletions src/gtmetrix-net/Properties/AssemblyInfo.cs
Expand Up @@ -4,14 +4,14 @@
[assembly: AssemblyTitleAttribute("gtmetrix-net")]
[assembly: AssemblyProductAttribute("gtmetrix-net")]
[assembly: AssemblyDescriptionAttribute("GTmetrix-net .Net client")]
[assembly: AssemblyVersionAttribute("1.0.1.0")]
[assembly: AssemblyFileVersionAttribute("1.0.1.0")]
[assembly: AssemblyVersionAttribute("1.0.2.0")]
[assembly: AssemblyFileVersionAttribute("1.0.2.0")]
namespace System {
internal static class AssemblyVersionInformation {
internal const System.String AssemblyTitle = "gtmetrix-net";
internal const System.String AssemblyProduct = "gtmetrix-net";
internal const System.String AssemblyDescription = "GTmetrix-net .Net client";
internal const System.String AssemblyVersion = "1.0.1.0";
internal const System.String AssemblyFileVersion = "1.0.1.0";
internal const System.String AssemblyVersion = "1.0.2.0";
internal const System.String AssemblyFileVersion = "1.0.2.0";
}
}

0 comments on commit 59148b2

Please sign in to comment.