Skip to content

Commit

Permalink
Don't mark classes obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
Redth committed Sep 27, 2017
1 parent d30b3d1 commit e2f452f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/Cake.Xamarin/MDToolRunner.cs
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;

using Cake.Core;
Expand All @@ -11,7 +11,6 @@ namespace Cake.Xamarin
/// <summary>
/// MDTool settings.
/// </summary>
[Obsolete]
public class MDToolSettings : Cake.Core.Tooling.ToolSettings
{
/// <summary>
Expand Down
3 changes: 1 addition & 2 deletions src/Cake.Xamarin/MDToolSetupRunner.cs
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using Cake.Core;
using Cake.Core.IO;
Expand All @@ -9,7 +9,6 @@ namespace Cake.Xamarin
/// <summary>
/// A wrapper around the Xamarin Studio Add-in Setup Utility (<c>mdtool setup</c>).
/// </summary>
[Obsolete ("Use VSToolSetupRunner instead.")]
public class MDToolSetupRunner : Tool<MDToolSetupSettings>
{
private readonly ICakeEnvironment _environment;
Expand Down
3 changes: 1 addition & 2 deletions src/Cake.Xamarin/MDToolSetupSettings.cs
@@ -1,12 +1,11 @@
using System;
using System;
using Cake.Core.Tooling;

namespace Cake.Xamarin
{
/// <summary>
/// Settings for the <see cref="MDToolSetupRunner"/>.
/// </summary>
[Obsolete ("Use VSTool* instead")]
public class MDToolSetupSettings : ToolSettings
{

Expand Down

0 comments on commit e2f452f

Please sign in to comment.