Removed .NET 4.0 traces (eq. Code Contracts) as it breaks the build
This commit is contained in:
parent
c46c660dc9
commit
629039fb62
1 changed files with 1 additions and 3 deletions
|
@ -37,8 +37,6 @@ using System.Collections.Generic;
|
|||
using System.Reflection;
|
||||
using Ionic.Zip;
|
||||
using WebsitePanel.Providers.OS;
|
||||
using System.Diagnostics.Contracts;
|
||||
|
||||
|
||||
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>
|
||||
public static void SetDefaultCliProvider(ICommandLineProvider provider)
|
||||
{
|
||||
Contract.Requires(provider != null);
|
||||
Debug.Assert(provider != null, "Command line provider is null");
|
||||
CliProvider = provider;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue