-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve dependency issues in 5.2.0 release (#109)
* resolve dependency issues in LINQPad 5 version * update release notes
- Loading branch information
Showing
9 changed files
with
48 additions
and
31 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
File renamed without changes.
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 |
---|---|---|
@@ -1,25 +1,24 @@ | ||
#if NETFRAMEWORK | ||
namespace System.Text | ||
namespace System.Text; | ||
|
||
internal static class StringBuilderExtensions | ||
{ | ||
internal static class StringBuilderExtensions | ||
public static StringBuilder Append( | ||
this StringBuilder sb, | ||
IFormatProvider? provider, | ||
FormattableString formattableString) | ||
{ | ||
public static StringBuilder Append( | ||
this StringBuilder sb, | ||
IFormatProvider? provider, | ||
FormattableString formattableString) | ||
{ | ||
sb.Append(formattableString.ToString(provider)); | ||
return sb; | ||
} | ||
sb.Append(formattableString.ToString(provider)); | ||
return sb; | ||
} | ||
|
||
public static StringBuilder AppendLine( | ||
this StringBuilder sb, | ||
IFormatProvider? provider, | ||
FormattableString formattableString) | ||
{ | ||
sb.AppendLine(formattableString.ToString(provider)); | ||
return sb; | ||
} | ||
public static StringBuilder AppendLine( | ||
this StringBuilder sb, | ||
IFormatProvider? provider, | ||
FormattableString formattableString) | ||
{ | ||
sb.AppendLine(formattableString.ToString(provider)); | ||
return sb; | ||
} | ||
} | ||
#endif |
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