Commit 2379e61d authored by Jason Williams's avatar Jason Williams
Browse files

Responding to PR feedback

parent 58fd8f25
Loading
Loading
Loading
Loading
+8 −32
Original line number Diff line number Diff line
@@ -25,48 +25,24 @@ namespace MockDataGenerator
        private List<string> flags = new List<string>();

        /// <summary>
        /// Gets Help Flag identifier string
        /// Help Flag identifier string
        /// </summary>
        public static string HelpFlag
        {
            get
            {
                return "?";
            }
        }
        public static readonly string HelpFlag = "?";

        /// <summary>
        /// Gets Device Identifier identifier string
        /// Device Identifier identifier string
        /// </summary>
        public static string IpOrHostname
        {
            get
            {
                return "ip";
            }
        }
        public static readonly string IpOrHostname = "ip";

        /// <summary>
        /// Gets WDP Username identifier string
        /// WDP Username identifier string
        /// </summary>
        public static string WdpUser
        {
            get
            {
                return "user";
            }
        }
        public static readonly string WdpUser = "user";

        /// <summary>
        /// Gets WDP Password identifier string
        /// WDP Password identifier string
        /// </summary>
        public static string WdpPassword
        {
            get
            {
                return "pwd";
            }
        }
        public static readonly string WdpPassword = "pwd";

        /// <summary>
        /// Helper for getting a parameter value for a key
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ using System.Threading.Tasks;
namespace Microsoft.Tools.WindowsDevicePortal
{
    /// <content>
    /// .net 4.x implementation of device certificate handling methods.
    /// MOCK implementation of device certificate handling methods.
    /// </content>
    public partial class DevicePortal
    {
+1 −1
Original line number Diff line number Diff line

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25123.0
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsDevicePortalWrapper", "WindowsDevicePortalWrapper\WindowsDevicePortalWrapper.csproj", "{6A9E862E-5CDA-4A8A-BBC0-56E9EA921E39}"
EndProject