Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ImportedProjects
SVG
Commits
f28f5a2c
Commit
f28f5a2c
authored
Jan 17, 2019
by
Matt Schneeberger
Committed by
mrbean-bremen
Jan 19, 2019
Browse files
Rename namespace for ExCSS
parent
42db3781
Changes
74
Hide whitespace changes
Inline
Side-by-side
Source/Css/CssQuery.cs
View file @
f28f5a2c
...
...
@@ -3,7 +3,7 @@ using System.Collections.Generic;
using
System.Linq
;
using
System.Text
;
using
Fizzler
;
using
ExCSS
;
using
Svg.
ExCSS
;
namespace
Svg.Css
{
...
...
Source/External/ExCSS/IToString.cs
View file @
f28f5a2c
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
interface
IToString
{
...
...
Source/External/ExCSS/Lexer.cs
View file @
f28f5a2c
...
...
@@ -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
{
...
...
Source/External/ExCSS/Model/Enumerations.cs
View file @
f28f5a2c
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
internal
static
class
RuleTypes
{
...
...
Source/External/ExCSS/Model/Extensions/CharacterExtensions.cs
View file @
f28f5a2c
using
System.Collections.Generic
;
namespace
ExCSS.Model.Extensions
namespace
Svg.
ExCSS.Model.Extensions
{
static
class
CharacterExtensions
{
...
...
Source/External/ExCSS/Model/Extensions/StringExtensions.cs
View file @
f28f5a2c
using
System
;
using
System.Text
;
namespace
ExCSS.Model.Extensions
namespace
Svg.
ExCSS.Model.Extensions
{
public
static
class
StringExtensions
{
...
...
Source/External/ExCSS/Model/FunctionBuffer.cs
View file @
f28f5a2c
using
System
;
using
System.Collections.Generic
;
namespace
ExCSS.Model
namespace
Svg.
ExCSS.Model
{
internal
class
FunctionBuffer
{
...
...
Source/External/ExCSS/Model/HtmlEncoding.cs
View file @
f28f5a2c
using
System
;
using
System.Text
;
namespace
ExCSS.Model
namespace
Svg.
ExCSS.Model
{
internal
static
class
HtmlEncoding
{
...
...
Source/External/ExCSS/Model/ICssRules.cs
View file @
f28f5a2c
using
System.Collections.Generic
;
namespace
ExCSS.Model
namespace
Svg.
ExCSS.Model
{
interface
ISupportsRuleSets
{
...
...
Source/External/ExCSS/Model/ICssSelector.cs
View file @
f28f5a2c
namespace
ExCSS.Model
namespace
Svg.
ExCSS.Model
{
interface
ISupportsSelector
{
...
...
Source/External/ExCSS/Model/IStyleDeclaration.cs
View file @
f28f5a2c
namespace
ExCSS.Model
namespace
Svg.
ExCSS.Model
{
interface
ISupportsDeclarations
{
...
...
Source/External/ExCSS/Model/ISupportsMedia.cs
View file @
f28f5a2c
namespace
ExCSS.Model
namespace
Svg.
ExCSS.Model
{
interface
ISupportsMedia
{
...
...
Source/External/ExCSS/Model/MediaTypeList.cs
View file @
f28f5a2c
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
>
{
...
...
Source/External/ExCSS/Model/Rules/AggregateRule.cs
View file @
f28f5a2c
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
{
...
...
Source/External/ExCSS/Model/Rules/CharacterSetRule.cs
View file @
f28f5a2c
using
ExCSS.Model.Extensions
;
using
Svg.
ExCSS.Model.Extensions
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
CharacterSetRule
:
RuleSet
{
...
...
Source/External/ExCSS/Model/Rules/ConditionalRule.cs
View file @
f28f5a2c
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
abstract
class
ConditionalRule
:
AggregateRule
{
...
...
Source/External/ExCSS/Model/Rules/DocumentRule.cs
View file @
f28f5a2c
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
{
...
...
Source/External/ExCSS/Model/Rules/FontFaceRule.cs
View file @
f28f5a2c
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
{
...
...
Source/External/ExCSS/Model/Rules/GenericRule.cs
View file @
f28f5a2c
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
class
GenericRule
:
AggregateRule
{
...
...
Source/External/ExCSS/Model/Rules/IRuleContainer.cs
View file @
f28f5a2c
using
System.Collections.Generic
;
// ReSharper disable once CheckNamespace
namespace
ExCSS
namespace
Svg.
ExCSS
{
public
interface
IRuleContainer
{
...
...
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment