Skip to content

Commit 6e59f25

Browse files
committed
Original code from SharpDevelop 3.2 http://www.icsharpcode.net/opensource/sd/download/
0 parents  commit 6e59f25

File tree

144 files changed

+25561
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+25561
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.user

ICSharpCode.TextEditor.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Microsoft Visual Studio Solution File, Format Version 9.00
2+
# Visual Studio 2005
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.TextEditor.Tests", "Test\ICSharpCode.TextEditor.Tests.csproj", "{6259D767-BA7C-484D-9472-68F350A20086}"
4+
EndProject
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.TextEditor", "Project\ICSharpCode.TextEditor.csproj", "{2D18BE89-D210-49EB-A9DD-2246FBB3DF6D}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{6259D767-BA7C-484D-9472-68F350A20086}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{6259D767-BA7C-484D-9472-68F350A20086}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{6259D767-BA7C-484D-9472-68F350A20086}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{6259D767-BA7C-484D-9472-68F350A20086}.Release|Any CPU.Build.0 = Release|Any CPU
17+
{2D18BE89-D210-49EB-A9DD-2246FBB3DF6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
18+
{2D18BE89-D210-49EB-A9DD-2246FBB3DF6D}.Debug|Any CPU.Build.0 = Debug|Any CPU
19+
{2D18BE89-D210-49EB-A9DD-2246FBB3DF6D}.Release|Any CPU.ActiveCfg = Release|Any CPU
20+
{2D18BE89-D210-49EB-A9DD-2246FBB3DF6D}.Release|Any CPU.Build.0 = Release|Any CPU
21+
EndGlobalSection
22+
GlobalSection(SolutionProperties) = preSolution
23+
HideSolutionNode = FALSE
24+
EndGlobalSection
25+
EndGlobal

Project/Configuration/AssemblyInfo.cs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// <file>
2+
// <copyright see="prj:///doc/copyright.txt"/>
3+
// <license see="prj:///doc/license.txt"/>
4+
// <owner name="Mike Krüger" email="[email protected]"/>
5+
// <version>$Revision$</version>
6+
// </file>
7+
8+
using System;
9+
using System.Reflection;
10+
using System.Runtime.CompilerServices;
11+
12+
[assembly: CLSCompliant(true)]
13+
[assembly: StringFreezing()]
14+
15+
[assembly: AssemblyTitle("ICSharpCode.TextEditor")]
16+
[assembly: AssemblyDescription("A .NET text editor control")]
17+
[assembly: AssemblyConfiguration("")]
18+
[assembly: AssemblyTrademark("")]
19+
[assembly: AssemblyCulture("")]

Project/ICSharpCode.TextEditor.csproj

+219
Large diffs are not rendered by default.

Project/Resources/ASPX.xshd

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0"?>
2+
<SyntaxDefinition name = "ASP/XHTML" extensions = ".asp;.aspx;.asax;.asmx" extends = "HTML">
3+
<RuleSets>
4+
<RuleSet ignorecase = "true">
5+
<Span name = "ASPCode" rule = "ASP" bold = "false" italic = "false" color = "Black" bgcolor = "#F7F2E3" stopateol = "false">
6+
<Begin color="Black" bgcolor="Yellow">&lt;%</Begin>
7+
<End color="Black" bgcolor="Yellow">%&gt;</End>
8+
</Span>
9+
</RuleSet>
10+
11+
<RuleSet name="ASP" ignorecase = "false">
12+
<Span name = "COMMENT" bold = "false" italic = "false" color = "Green" bgcolor = "#F7F2E3" stopateol = "true">
13+
<Begin>//</Begin>
14+
</Span>
15+
</RuleSet>
16+
</RuleSets>
17+
</SyntaxDefinition>

Project/Resources/BAT-Mode.xshd

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0"?>
2+
3+
<!-- syntaxdefinition for BAT 2000 by Mike Krueger -->
4+
<SyntaxDefinition name = "BAT" extensions = ".bat">
5+
6+
<Environment>
7+
<Default color = "Yellow" bgcolor = "Black"/>
8+
<Selection color = "White" bgcolor = "Purple"/>
9+
<VRuler color = "Green"/>
10+
<InvalidLines color = "Red"/>
11+
<CaretMarker color = "Yellow"/>
12+
13+
<LineNumbers color = "Gray" bgcolor = "Black"/>
14+
15+
<FoldLine color = "Cyan" bgcolor = "Black"/>
16+
<FoldMarker color = "Cyan" bgcolor = "White"/>
17+
<SelectedFoldLine color = "Green" bgcolor="Black"/>
18+
19+
<EOLMarkers color = "#E0E0E5"/>
20+
<SpaceMarkers color = "#E0E0E5"/>
21+
<TabMarkers color = "#E0E0E5"/>
22+
</Environment>
23+
24+
<Digits name = "Digits" bold = "false" italic = "false" color = "Yellow"/>
25+
26+
<RuleSets>
27+
<RuleSet ignorecase = "false">
28+
<Delimiters> </Delimiters>
29+
</RuleSet>
30+
</RuleSets>
31+
32+
</SyntaxDefinition>

0 commit comments

Comments
 (0)