From 7fe37c8d532a20036842aeb596b14da233faf131 Mon Sep 17 00:00:00 2001 From: Rob Reynolds Date: Wed, 4 Feb 2015 03:18:23 -0600 Subject: [PATCH] (GH-10) FeatureCommandConfiguration Serializable --- .../configuration/ChocolateyConfiguration.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/chocolatey/infrastructure.app/configuration/ChocolateyConfiguration.cs b/src/chocolatey/infrastructure.app/configuration/ChocolateyConfiguration.cs index 8d3c17625f..2e0c8c394e 100644 --- a/src/chocolatey/infrastructure.app/configuration/ChocolateyConfiguration.cs +++ b/src/chocolatey/infrastructure.app/configuration/ChocolateyConfiguration.cs @@ -253,8 +253,9 @@ public sealed class SourcesCommandConfiguration public SourceCommandType Command { get; set; } public string Username { get; set; } public string Password { get; set; } - } - + } + + [Serializable] public sealed class FeatureCommandConfiguration { public string Name { get; set; }