Changeset 11882 for trunk/sources/HeuristicLab.Scripting
- Timestamp:
- 02/04/15 10:39:33 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.Scripting/3.3
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Scripting/3.3/HeuristicLab.Scripting-3.3.csproj
r11788 r11882 91 91 </ItemGroup> 92 92 <ItemGroup> 93 <Compile Include="CompilationException.cs" /> 93 94 <Compile Include="Scripts\CSharp\CSharpScript.cs" /> 94 95 <Compile Include="Scripts\Templates\CSharpScriptTemplate.cs" /> -
trunk/sources/HeuristicLab.Scripting/3.3/Script.cs
r11787 r11882 127 127 .AppendLine(error.ErrorText); 128 128 } 129 throw new InvalidOperationException(string.Format("Compilation of \"{0}\" failed:{1}{2}",129 throw new CompilationException(string.Format("Compilation of \"{0}\" failed:{1}{2}", 130 130 Name, Environment.NewLine, sb.ToString())); 131 131 } else {
Note: See TracChangeset
for help on using the changeset viewer.