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>
26 lines
633 B
C#
26 lines
633 B
C#
using Octokit.Internal;
|
|
|
|
namespace Octokit
|
|
{
|
|
public enum Scope
|
|
{
|
|
/// <summary>
|
|
/// The scope of the dependency is not specified or cannot be determined.
|
|
/// </summary>
|
|
[Parameter(Value = "Unknown")]
|
|
Unknown,
|
|
|
|
/// <summary>
|
|
/// Dependency is utilized at runtime and in the development environment.
|
|
/// </summary>
|
|
[Parameter(Value = "Runtime")]
|
|
Runtime,
|
|
|
|
/// <summary>
|
|
/// Dependency is only utilized in the development environment.
|
|
/// </summary>
|
|
[Parameter(Value = "Development")]
|
|
Development,
|
|
}
|
|
}
|