Skip to content

Commit

Permalink
Marked functionality removed in v2.0.0 as obsolete (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
akamsteeg committed May 21, 2018
1 parent 54569c7 commit 4f475f0
Show file tree
Hide file tree
Showing 14 changed files with 45 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using AtleX.CommandLineArguments.Validators;
using AtleX.CommandLineArguments.Help;
using AtleX.CommandLineArguments.Parsers.TypeParsers;
using System;

namespace AtleX.CommandLineArguments.Configuration
{
Expand Down Expand Up @@ -58,6 +59,7 @@ public CommandLineArgumentsConfiguration()
/// <summary>
/// Gets the default <see cref="CommandLineArgumentsConfiguration"/>
/// </summary>
[Obsolete("This property will be removed in a future version")]
public static CommandLineArgumentsConfiguration Default
{
get
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ namespace AtleX.CommandLineArguments.Configuration
/// <summary>
/// Represents a builder for <see cref="CommandLineArgumentsConfiguration"/>
/// </summary>
[Obsolete("This class will be removed in a future version")]
public class ConfigurationBuilder
: CommandLineArgumentsConfiguration
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
namespace AtleX.CommandLineArguments.Parsers.TypeParsers
using System;

namespace AtleX.CommandLineArguments.Parsers.TypeParsers
{
/// <summary>
/// Represents a <see cref="TypeParser{T}"/> for <see cref="bool"/>
/// </summary>
[Obsolete("This class will be removed in a future version")]
public sealed class BoolTypeParser
: TypeParser<bool>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
namespace AtleX.CommandLineArguments.Parsers.TypeParsers
using System;

namespace AtleX.CommandLineArguments.Parsers.TypeParsers
{
/// <summary>
/// Represents a <see cref="TypeParser{T}"/> for <see cref="byte"/>
/// </summary>
[Obsolete("This class will be removed in a future version")]
public sealed class ByteTypeParser
: TypeParser<byte>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
namespace AtleX.CommandLineArguments.Parsers.TypeParsers
using System;

namespace AtleX.CommandLineArguments.Parsers.TypeParsers
{
/// <summary>
/// Represents a <see cref="TypeParser{T}"/> for <see cref="char"/>
/// </summary>
[Obsolete("This class will be removed in a future version")]
public sealed class CharTypeParser
: TypeParser<char>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ namespace AtleX.CommandLineArguments.Parsers.TypeParsers
/// <summary>
/// Represents a <see cref="TypeParser{T}"/> for <see cref="DateTime"/>
/// </summary>
[Obsolete("This class will be removed in a future version")]
public sealed class DateTimeTypeParser
: TypeParser<DateTime>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
namespace AtleX.CommandLineArguments.Parsers.TypeParsers
using System;

namespace AtleX.CommandLineArguments.Parsers.TypeParsers
{
/// <summary>
/// Represents a <see cref="TypeParser{T}"/> for <see cref="decimal"/>
/// </summary>
[Obsolete("This class will be removed in a future version")]
public sealed class DecimalTypeParser
: TypeParser<decimal>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
namespace AtleX.CommandLineArguments.Parsers.TypeParsers
using System;

namespace AtleX.CommandLineArguments.Parsers.TypeParsers
{
/// <summary>
/// Represents a <see cref="TypeParser{T}"/> for <see cref="double"/>
/// </summary>
[Obsolete("This class will be removed in a future version")]
public sealed class DoubleTypeParser
: TypeParser<double>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
namespace AtleX.CommandLineArguments.Parsers.TypeParsers
using System;

namespace AtleX.CommandLineArguments.Parsers.TypeParsers
{
/// <summary>
/// Represents a <see cref="TypeParser{T}"/> for <see cref="float"/>
/// </summary>
[Obsolete("This class will be removed in a future version")]
public sealed class FloatTypeParser
: TypeParser<float>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
namespace AtleX.CommandLineArguments.Parsers.TypeParsers
using System;

namespace AtleX.CommandLineArguments.Parsers.TypeParsers
{
/// <summary>
/// Represents a <see cref="TypeParser{T}"/> for <see cref="int"/>
/// </summary>
[Obsolete("This class will be removed in a future version")]
public sealed class IntTypeParser
: TypeParser<int>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
namespace AtleX.CommandLineArguments.Parsers.TypeParsers
using System;

namespace AtleX.CommandLineArguments.Parsers.TypeParsers
{
/// <summary>
/// Represents a <see cref="TypeParser{T}"/> for <see cref="long"/>
/// </summary>
[Obsolete("This class will be removed in a future version")]
public sealed class LongTypeParser
: TypeParser<long>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
namespace AtleX.CommandLineArguments.Parsers.TypeParsers
using System;

namespace AtleX.CommandLineArguments.Parsers.TypeParsers
{
/// <summary>
/// Represents a <see cref="TypeParser{T}"/> for <see cref="short"/>
/// </summary>
[Obsolete("This class will be removed in a future version")]
public sealed class ShortTypeParser
: TypeParser<short>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
namespace AtleX.CommandLineArguments.Parsers.TypeParsers
using System;

namespace AtleX.CommandLineArguments.Parsers.TypeParsers
{
/// <summary>
/// Represents a <see cref="TypeParser{T}"/> for <see cref="string"/>
/// </summary>
[Obsolete("This class will be removed in a future version")]
public sealed class StringTypeParser
: TypeParser<string>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace AtleX.CommandLineArguments.Parsers.TypeParsers
public abstract class TypeParser
{
/// <summary>
/// Gets the <see cref="Type"/> this <see cref="TypeParser{T}"/> handles
/// Gets the <see cref="Type"/> this <see cref="TypeParser"/> handles
/// </summary>
public Type Type
{
Expand Down

0 comments on commit 4f475f0

Please sign in to comment.