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

Rename namespace for ExCSS

parent 42db3781
......@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using Fizzler;
using ExCSS;
using Svg.ExCSS;
namespace Svg.Css
{
......
namespace ExCSS
namespace Svg.ExCSS
{
public interface IToString
{
......
......@@ -2,11 +2,11 @@
using System.Collections.Generic;
using System.Globalization;
using System.Text;
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
{
sealed class Lexer
{
......

// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
internal static class RuleTypes
{
......
using System.Collections.Generic;
namespace ExCSS.Model.Extensions
namespace Svg.ExCSS.Model.Extensions
{
static class CharacterExtensions
{
......
using System;
using System.Text;
namespace ExCSS.Model.Extensions
namespace Svg.ExCSS.Model.Extensions
{
public static class StringExtensions
{
......
using System;
using System.Collections.Generic;
namespace ExCSS.Model
namespace Svg.ExCSS.Model
{
internal class FunctionBuffer
{
......
using System;
using System.Text;
namespace ExCSS.Model
namespace Svg.ExCSS.Model
{
internal static class HtmlEncoding
{
......
using System.Collections.Generic;
namespace ExCSS.Model
namespace Svg.ExCSS.Model
{
interface ISupportsRuleSets
{
......
namespace ExCSS.Model
namespace Svg.ExCSS.Model
{
interface ISupportsSelector
{
......
namespace ExCSS.Model
namespace Svg.ExCSS.Model
{
interface ISupportsDeclarations
{
......
namespace ExCSS.Model
namespace Svg.ExCSS.Model
{
interface ISupportsMedia
{
......
using System.Collections;
using System.Collections.Generic;
using ExCSS.Model.Extensions;
using Svg.ExCSS.Model.Extensions;
// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
public class MediaTypeList : IEnumerable<string>
{
......
using System.Collections.Generic;
using ExCSS.Model;
using Svg.ExCSS.Model;
// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
public abstract class AggregateRule : RuleSet, ISupportsRuleSets
{
......
using ExCSS.Model.Extensions;
using Svg.ExCSS.Model.Extensions;
// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
public class CharacterSetRule : RuleSet
{
......
// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
public abstract class ConditionalRule : AggregateRule
{
......
using System;
using System.Collections.Generic;
using System.Text;
using ExCSS.Model;
using ExCSS.Model.Extensions;
using Svg.ExCSS.Model;
using Svg.ExCSS.Model.Extensions;
// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
public sealed class DocumentRule : AggregateRule
{
......
using ExCSS.Model;
using ExCSS.Model.Extensions;
using Svg.ExCSS.Model;
using Svg.ExCSS.Model.Extensions;
// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
public class FontFaceRule : RuleSet, ISupportsDeclarations
{
......
// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
public class GenericRule : AggregateRule
{
......
using System.Collections.Generic;
// ReSharper disable once CheckNamespace
namespace ExCSS
namespace Svg.ExCSS
{
public interface IRuleContainer
{
......
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