Removed .NET 4.0 traces (eq. Code Contracts) as it breaks the build

This commit is contained in:
ptsurbeleu 2012-04-26 02:22:39 -07:00
parent c46c660dc9
commit 629039fb62

View file

@ -37,8 +37,6 @@ using System.Collections.Generic;
using System.Reflection; using System.Reflection;
using Ionic.Zip; using Ionic.Zip;
using WebsitePanel.Providers.OS; using WebsitePanel.Providers.OS;
using System.Diagnostics.Contracts;
namespace WebsitePanel.Providers.Utils namespace WebsitePanel.Providers.Utils
{ {
@ -128,7 +126,7 @@ namespace WebsitePanel.Providers.Utils
/// <param name="provider">An instance of a command-line provider to initialize the utility with.</param> /// <param name="provider">An instance of a command-line provider to initialize the utility with.</param>
public static void SetDefaultCliProvider(ICommandLineProvider provider) public static void SetDefaultCliProvider(ICommandLineProvider provider)
{ {
Contract.Requires(provider != null); Debug.Assert(provider != null, "Command line provider is null");
CliProvider = provider; CliProvider = provider;
} }