22 references to DOT
PresentationBuildTasks (22)
BuildTasks\Ms\Internal\MarkupCompiler\MarkupCompiler.cs (10)
719
int fileExtIndex = file.Path.LastIndexOf(
DOT
, StringComparison.Ordinal);
1392
fullClass = ns +
DOT
+ className;
1401
int index = subClassFullName.LastIndexOf(
DOT
, StringComparison.Ordinal);
1418
subClassFullName =
DOT
;
1430
int index = className.LastIndexOf(
DOT
, StringComparison.Ordinal);
1709
modifier =
DOT
;
2303
string genericName = t.Namespace +
DOT
+ t.Name;
2470
className =
DOT
;
2912
string rootClassName = elementType != null ? elementType.Name : baseClassFullName.Substring(baseClassFullName.LastIndexOf(
DOT
, StringComparison.Ordinal)+1);
3276
get { return _elementType != null ? _elementType.Name : _localElementFullName.Substring(_localElementFullName.LastIndexOf(
DOT
, StringComparison.Ordinal) + 1); }
BuildTasks\Ms\Internal\MarkupCompiler\ParserExtension.cs (11)
199
ns += MarkupCompiler.
DOT
;
282
localTagFullName = namespaceMaps[0].ClrNamespace + MarkupCompiler.
DOT
+ ownerTagName;
329
localTagFullName = namespaceMaps[0].ClrNamespace + MarkupCompiler.
DOT
+ ownerTagName;
449
_class = MarkupCompiler.
DOT
;
484
_subClass = MarkupCompiler.
DOT
;
499
_classModifier = MarkupCompiler.
DOT
;
840
if (_class == MarkupCompiler.
DOT
)
842
int index = xamlDefAttributeNode.Value.LastIndexOf(MarkupCompiler.
DOT
, StringComparison.Ordinal);
856
if (_classModifier == MarkupCompiler.
DOT
)
870
if (_subClass == MarkupCompiler.
DOT
)
872
int index = xamlDefAttributeNode.Value.LastIndexOf(MarkupCompiler.
DOT
, StringComparison.Ordinal);
BuildTasks\MS\Internal\Tasks\CompilerWrapper.cs (1)
366
int fileExtIndex = newRelativeFilePath.LastIndexOf(MarkupCompiler.
DOT
, StringComparison.Ordinal);