2017-03-02 21:04:03 -08: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-13 17:56:25 -08:00
|
|
|
using System;
|
|
|
|
using System.Collections;
|
2017-05-02 12:37:29 -07:00
|
|
|
using NuGet.Configuration;
|
2017-02-13 17:56:25 -08:00
|
|
|
|
|
|
|
class Program
|
|
|
|
{
|
|
|
|
public static void Main(string[] args)
|
|
|
|
{
|
2017-05-02 12:37:29 -07:00
|
|
|
var settingValue = new SettingValue("key", "value", false);
|
2017-02-13 17:56:25 -08:00
|
|
|
|
2017-05-02 12:37:29 -07:00
|
|
|
Console.WriteLine(settingValue.Key);
|
2017-02-13 17:56:25 -08:00
|
|
|
}
|
|
|
|
}
|