Skip to content

Commit 63b7dbb

Browse files
committed
Update CHANGELOG
1 parent f862035 commit 63b7dbb

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [v2.2.4]
4+
5+
**May 24, 2018**
6+
7+
Bug fixes:
8+
9+
* [@liamdawson]: support parsing `System.Uri`
10+
* Fix #101 - Update `DotNetExe.FullPath` to honor the `DOTNET_ROOT` environment variable as a fallback
11+
312
## [v2.2.3]
413

514
**May 10, 2018**
@@ -157,6 +166,7 @@ Other:
157166
[@couven92]: https://github.com/couven92
158167
[@demosdemon]: https://github.com/demosdemon
159168
[@kant2002]: https://github.com/kant2002
169+
[@liamdawson]: https://github.com/liamdawson
160170
[@rmcc13]: https://github.com/rmcc13
161171
[@sebastienros]: https://github.com/sebastienros
162172

docs/docfx.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@
1515
],
1616
"dest": "obj/api/",
1717
"properties": {
18-
"TargetFrameworks": "netstandard2.0",
1918
"TargetFramework": "netstandard2.0"
2019
}
2120
}
2221
],
2322
"build": {
2423
"content": [
2524
{
26-
"files": ["**.yml"],
25+
"files": [
26+
"**.yml"
27+
],
2728
"exclude": [
2829
"**/obj/**",
2930
"**.meta"

src/CommandLineUtils/Utilities/DotNetExe.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ static DotNetExe()
2727
/// May be <c>null</c> if the CLI cannot be found. <seealso cref="FullPathOrDefault" />
2828
/// </para>
2929
/// </summary>
30-
/// /// <returns>The path or null</returns>
30+
/// <returns>The path or null</returns>
3131
public static string FullPath { get; }
3232

3333
/// <summary>

0 commit comments

Comments
 (0)