mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
Implement dependency review and dependency submission Co-authored-by: André Pereira <Andre.LuisPereira@Student.HTW-Berlin.de>
23 lines
594 B
C#
23 lines
594 B
C#
using System.Diagnostics;
|
|
using System.Globalization;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class NewDependencySnapshotManifestFile
|
|
{
|
|
/// <summary>
|
|
/// Optional. The path of the manifest file relative to the root of the Git repository.
|
|
/// </summary>
|
|
public string SourceLocation { get; set; }
|
|
|
|
internal string DebuggerDisplay
|
|
{
|
|
get
|
|
{
|
|
return string.Format(CultureInfo.InvariantCulture, "Source Location: {0}", SourceLocation);
|
|
}
|
|
}
|
|
}
|
|
}
|