2017-03-03 05:04:03 +00:00
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
2017-02-14 01:56:25 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections;
|
2017-05-02 19:37:29 +00:00
|
|
|
using NuGet.Configuration;
|
2017-02-14 01:56:25 +00:00
|
|
|
|
|
|
|
class Program
|
|
|
|
{
|
|
|
|
public static void Main(string[] args)
|
|
|
|
{
|
2017-05-02 19:37:29 +00:00
|
|
|
var settingValue = new SettingValue("key", "value", false);
|
2017-02-14 01:56:25 +00:00
|
|
|
|
2017-05-02 19:37:29 +00:00
|
|
|
Console.WriteLine(settingValue.Key);
|
2017-02-14 01:56:25 +00:00
|
|
|
}
|
|
|
|
}
|