mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 00:42:51 +08:00

* Do not emit line break when rendering * Don't be greedy when measuring. * Fix a condition that decides if the path fits in the allotted space. Closes #1307
12 lines
264 B
C#
12 lines
264 B
C#
namespace Spectre.Console.Tests;
|
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
|
|
public sealed class GitHubIssueAttribute : Attribute
|
|
{
|
|
public string Url { get; }
|
|
|
|
public GitHubIssueAttribute(string url)
|
|
{
|
|
Url = url;
|
|
}
|
|
} |