Commit f28f5a2c authored by Matt Schneeberger's avatar Matt Schneeberger Committed by mrbean-bremen
Browse files

Rename namespace for ExCSS

parent 42db3781

// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
internal sealed class NthLastOfTypeSelector : NthChildSelector, IToString
{
......

// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
internal sealed class NthOfTypeSelector : NthChildSelector, IToString
{
......
using System;
using System.Globalization;
using ExCSS.Model;
using ExCSS.Model.TextBlocks;
using Svg.ExCSS.Model;
using Svg.ExCSS.Model.TextBlocks;
// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
internal sealed class SelectorFactory
{
......
......@@ -2,7 +2,7 @@
using System.Collections.Generic;
// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
public abstract class SelectorList : BaseSelector, IEnumerable<BaseSelector>
{
......
using System;
using ExCSS.Model;
using Svg.ExCSS.Model;
// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
public sealed class SimpleSelector : BaseSelector
{
......
namespace ExCSS.Model
namespace Svg.ExCSS.Model
{
internal static class Specification
{
......

namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal abstract class Block
{
......

namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal class BracketBlock : Block
{
......

namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal abstract class CharacterBlock : Block
{
......

namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal class CommentBlock : Block
{
......

using System.Globalization;
namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal class DelimiterBlock : CharacterBlock
{
......

namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal class MatchBlock : Block
{
......
using System;
using System.Globalization;
namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal class NumericBlock : Block
{
......

namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal class PipeBlock : Block
{
......
using System.Collections.Generic;
namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal class RangeBlock : Block
{
......

namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal class SpecialCharacter : CharacterBlock
{
......

namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal class StringBlock : Block
{
......

namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal class SymbolBlock : Block
{
......
using System;
using System.Globalization;
namespace ExCSS.Model.TextBlocks
namespace Svg.ExCSS.Model.TextBlocks
{
internal class UnitBlock : Block
{
......
using System.Collections.Generic;
using System.Text;
using ExCSS.Model;
using Svg.ExCSS.Model;
// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
public class GenericFunction : Term
{
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment