13 lines
374 B
C#
Executable File
13 lines
374 B
C#
Executable File
namespace dotless.Core.Parameters
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
public class ConsoleArgumentParameterSource : IParameterSource
|
|
{
|
|
public static IDictionary<string, string> ConsoleArguments = new Dictionary<string, string>();
|
|
public IDictionary<string, string> GetParameters()
|
|
{
|
|
return ConsoleArguments;
|
|
}
|
|
}
|
|
} |