[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / Microsoft.Build.Tasks / Microsoft.Build.Tasks / VCBuild.cs
index 23e7e2c3c7f8ebb93d7f87c1649f50c77dc12756..e89b877d179975133bd7b83293c219effd58c9d7 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if !NET_4_0
-
-using System;
-using System.Collections.Specialized;
-using Microsoft.Build.Framework;
-
-namespace Microsoft.Build.Tasks {
-
-       [MonoTODO]
-       public class VCBuild : ToolTaskExtension {
-
-               [MonoTODO]
-               public VCBuild ()
-               {
-                       throw new NotImplementedException ();
-               }
-
-               [MonoTODO]
-               public ITaskItem[] AdditionalLibPaths {
-                       get {
-                               throw new NotImplementedException ();
-                       }
-                       set {
-                               throw new NotImplementedException ();
-                       }
-               }
-
-               [MonoTODO]
-               public string AdditionalOptions {
-                       get {
-                               throw new NotImplementedException ();
-                       }
-                       set {
-                               throw new NotImplementedException ();
-                       }
-               }
-
-               [MonoTODO]
-               public bool Clean {
-                       get {
-                               throw new NotImplementedException ();
-                       }
-                       set {
-                               throw new NotImplementedException ();
-                       }
-               }
-
-               [MonoTODO]
-               public string Configuration {
-                       get {
-                               throw new NotImplementedException ();
-                       }
-                       set {
-                               throw new NotImplementedException ();
-                       }
-               }
-
-               [MonoTODO]
-               public ITaskItem Override {
-                       get {
-                               throw new NotImplementedException ();
-                       }
-                       set {
-                               throw new NotImplementedException ();
-                       }
-               }
-
-               [MonoTODO]
-               public string Platform {
-                       get {
-                               throw new NotImplementedException ();
-                       }
-                       set {
-                               throw new NotImplementedException ();
-                       }
-               }
-
-               [MonoTODO]
-               [Required]
-               public ITaskItem[] Projects {
-                       get {
-                               throw new NotImplementedException ();
-                       }
-                       set {
-                               throw new NotImplementedException ();
-                       }
-               }
-
-               [MonoTODO]
-               public bool Rebuild {
-                       get {
-                               throw new NotImplementedException ();
-                       }
-                       set {
-                               throw new NotImplementedException ();
-                       }
-               }
-
-               [MonoTODO]
-               public ITaskItem SolutionFile {
-                       get {
-                               throw new NotImplementedException ();
-                       }
-                       set {
-                               throw new NotImplementedException ();
-                       }
-               }
-
-               [MonoTODO]
-               public bool UserEnvironment {
-                       get {
-                               throw new NotImplementedException ();
-                       }
-                       set {
-                               throw new NotImplementedException ();
-                       }
-               }
-
-               [MonoTODO]
-               protected override StringDictionary EnvironmentOverride {
-                       get {
-                               throw new NotImplementedException ();
-                       }
-               }
-
-               [MonoTODO]
-               protected override string ToolName {
-                       get {
-                               throw new NotImplementedException ();
-                       }
-               }
-
-               [MonoTODO]
-               public override bool Execute ()
-               {
-                       throw new NotImplementedException ();
-               }
-
-               [MonoTODO]
-               protected internal override void AddCommandLineCommands (
-                               CommandLineBuilderExtension commandLine )
-               {
-                       throw new NotImplementedException ();
-               }
-
-               [MonoTODO]
-               protected override string GenerateFullPathToTool ()
-               {
-                       throw new NotImplementedException ();
-               }
-
-               [MonoTODO]
-               protected override bool ValidateParameters ()
-               {
-                       throw new NotImplementedException ();
-               }
-       }
-}
-
-#endif