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
public static class OverrideFormattedStringExtension | |
{ | |
// | |
// Static Methods | |
// | |
public static SpannableString ToAttributed(this FormattedString formattedString, Font defaultFont, Color defaultForegroundColor, TextView view) | |
{ | |
if (formattedString == null) | |
{ | |
return null; |
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
@{ | |
RootModule = 'Open-Solution.psm1' | |
ModuleVersion = '0.2.0' | |
GUID = '0d320efd-ae51-49bf-a0b2-3f20ae76d6d0' | |
Author = 'Original: Nick Spreitzer; Modified: Adam Anderson' | |
FunctionsToExport = @('Open-Solution', 'Open-AtmelSolution') | |
AliasesToExport = @('sln', 'atsln') | |
} |