Changeset 11908 for stable/HeuristicLab.Scripting
- Timestamp:
- 02/05/15 10:58:54 (10 years ago)
- Location:
- stable
- Files:
-
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 11882
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Scripting/3.3/HeuristicLab.Scripting-3.3.csproj
r11907 r11908 85 85 </ItemGroup> 86 86 <ItemGroup> 87 <Compile Include="CompilationException.cs" /> 87 88 <Compile Include="Scripts\CSharp\CSharpScript.cs" /> 88 89 <Compile Include="Scripts\Templates\CSharpScriptTemplate.cs" /> -
stable/HeuristicLab.Scripting/3.3/Script.cs
r11907 r11908 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.