-
Notifications
You must be signed in to change notification settings - Fork 0
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 #4 from stevenvolckaert/vNext
Merging v1.0.0.
- Loading branch information
Showing
14 changed files
with
443 additions
and
34 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version: 0.1.1-{build} | ||
version: 1.0.0-{build} | ||
build: | ||
verbosity: minimal | ||
configuration: | ||
|
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,26 @@ | ||
namespace StevenVolckaert | ||
{ | ||
using System; | ||
|
||
/// <summary> | ||
/// Represents a hyperlink. | ||
/// </summary> | ||
public struct Hyperlink | ||
{ | ||
/// <summary> | ||
/// Gets or sets the browsing context name of the hyperlink. | ||
/// </summary> | ||
/// <remarks> | ||
/// See http://w3c.github.io/html/browsers.html#browsing-context-names for more information. | ||
/// </remarks> | ||
public string BrowsingContextName { get; set; } | ||
/// <summary> | ||
/// Gets or sets the label of the hyperlink. | ||
/// </summary> | ||
public string Label { get; set; } | ||
/// <summary> | ||
/// Gets or sets the URI of the hyperlink. | ||
/// </summary> | ||
public Uri Uri { get; set; } | ||
} | ||
} |
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
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
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,21 @@ | ||
namespace StevenVolckaert | ||
{ | ||
/// <summary> | ||
/// Specifies a prefix that is used in combination with a unit of information (e.g. byte). | ||
/// </summary> | ||
public enum UnitOfInformationPrefix | ||
{ | ||
/// <summary> | ||
/// No prefix, indicating a power of 1. | ||
/// </summary> | ||
None = 0, | ||
/// <summary> | ||
/// A decimal prefix, indicating a power of 1000. | ||
/// </summary> | ||
Decimal = 1000, | ||
/// <summary> | ||
/// A binary prefix, indicating a power of 1024. | ||
/// </summary> | ||
Binary = 1024 | ||
} | ||
} |
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
Oops, something went wrong.