19 references to XomlCompilerHelper
System.Workflow.ComponentModel (19)
AuthoringOM\Compiler\Validation\WorkflowValidationFailedException.cs (1)
47
this.errors =
XomlCompilerHelper
.MorphIntoFriendlyValidationErrors(errors);
AuthoringOM\Compiler\XomlCompiler.cs (7)
700
XomlCompilerHelper
.FixReferencedAssemblies(parameters, results, parameters.LibraryPaths);
766
XomlCompilerHelper
.InternalCompileFromDomBatch(files, codeFiles, parameters, results, localAssemblyPath);
875
CompilerParameters clonedParams =
XomlCompilerHelper
.CloneCompilerParameters(parameters);
1001
userCodeFiles.AddRange(
XomlCompilerHelper
.GenerateFiles(codeDomProvider, clonedParams, (CodeCompileUnit[])ccus.ToArray(typeof(CodeCompileUnit))));
1095
if ((parameters.CompileWithNoCode) &&
XomlCompilerHelper
.HasCodeWithin(rootActivity))
1099
results.Errors.Add(
XomlCompilerHelper
.CreateXomlCompilerError(error, parameters));
1106
results.Errors.Add(
XomlCompilerHelper
.CreateXomlCompilerError(error, parameters));
AuthoringOM\Compiler\XomlCompilerHelpers.cs (5)
49
if (!
XomlCompilerHelper
.CheckPathName(libraryPath))
238
sourceFilePaths.AddRange(
XomlCompilerHelper
.GenerateFiles(codeDomProvider, parameters, (CodeCompileUnit[])ccus.ToArray(typeof(CodeCompileUnit))));
380
foreach (string assemblyPath in
XomlCompilerHelper
.StandardAssemblies)
546
compilerError = new WorkflowCompilerError(GetFileName(error), (int)GetValue(error,
XomlCompilerHelper
.LineNumber), (int)GetValue(error,
XomlCompilerHelper
.ColumnNumber), string.Empty, GetPrettifiedErrorText(error));
AuthoringOM\Compiler\XomlCompilerParameters.cs (5)
245
string runtimePath =
XomlCompilerHelper
.TrimDirectorySeparatorChar(RuntimeEnvironment.GetRuntimeDirectory());
246
this.netFxRuntimeRoot =
XomlCompilerHelper
.TrimDirectorySeparatorChar(Path.GetDirectoryName(runtimePath));
274
string refDir =
XomlCompilerHelper
.TrimDirectorySeparatorChar(refDirectories[j]);
293
string dir =
XomlCompilerHelper
.TrimDirectorySeparatorChar(Path.GetDirectoryName(Path.GetFullPath(path)));
418
XomlCompilerHelper
.ProcessCompilerOptions(value, out this.compileWithNoCode, out this.checkTypes);
AuthoringOM\ScheduleChanges.cs (1)
110
return
XomlCompilerHelper
.MorphIntoFriendlyValidationErrors(errors);