Skip to content

Commit fdd20d5

Browse files
authored
Added FastColoredTextBox as Git Submodule (#162)
* Fixed FCTB submodule * Updated project dependency * Updated changes.xml
1 parent 8ef5c67 commit fdd20d5

File tree

6 files changed

+23
-3
lines changed

6 files changed

+23
-3
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "FastColoredTextBox"]
2+
path = FastColoredTextBox
3+
url = https://github.com/Hexman768/FastColoredTextBox.git

FastColoredTextBox

Submodule FastColoredTextBox added at cf9c443

Notepad-Sharp.sln

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.29215.179
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.9.34728.123
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Notepad-Sharp", "Notepad-Sharp\Notepad-Sharp.csproj", "{2D886A7B-5A05-418E-8598-1E93D49321B5}"
7+
ProjectSection(ProjectDependencies) = postProject
8+
{6DD14A85-CCFC-4774-BD26-0F5772512319} = {6DD14A85-CCFC-4774-BD26-0F5772512319}
9+
EndProjectSection
10+
EndProject
11+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FastColoredTextBox", "FastColoredTextBox\FastColoredTextBox\FastColoredTextBox.csproj", "{6DD14A85-CCFC-4774-BD26-0F5772512319}"
712
EndProject
813
Global
914
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -15,6 +20,10 @@ Global
1520
{2D886A7B-5A05-418E-8598-1E93D49321B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
1621
{2D886A7B-5A05-418E-8598-1E93D49321B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
1722
{2D886A7B-5A05-418E-8598-1E93D49321B5}.Release|Any CPU.Build.0 = Release|Any CPU
23+
{6DD14A85-CCFC-4774-BD26-0F5772512319}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{6DD14A85-CCFC-4774-BD26-0F5772512319}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{6DD14A85-CCFC-4774-BD26-0F5772512319}.Release|Any CPU.ActiveCfg = Release|Any CPU
26+
{6DD14A85-CCFC-4774-BD26-0F5772512319}.Release|Any CPU.Build.0 = Release|Any CPU
1827
EndGlobalSection
1928
GlobalSection(SolutionProperties) = preSolution
2029
HideSolutionNode = FALSE

Notepad-Sharp/Notepad-Sharp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<ItemGroup>
5252
<Reference Include="FastColoredTextBox, Version=2.16.26.0, Culture=neutral, PublicKeyToken=fb8aa12b994ef61b, processorArchitecture=MSIL">
5353
<SpecificVersion>False</SpecificVersion>
54-
<HintPath>Resources\FastColoredTextBox.dll</HintPath>
54+
<HintPath>..\FastColoredTextBox\FastColoredTextBox\bin\Debug\FastColoredTextBox.dll</HintPath>
5555
</Reference>
5656
<Reference Include="System" />
5757
<Reference Include="System.Configuration" />

Notepad-Sharp/changes.xml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Changes>
33
<body>
44
<release date="${buildTimestamp}" description="" version="2.0.0">
5+
<action dev="Zachary Pedigo" issue="156" date="09-20-2024" type="add">Added FastColoredTextBox component as Git Submodule.</action>
56
<action dev="Zachary Pedigo" issue="126" date="09-16-2024" type="fix">Changed default theme and added light and dark themes.</action>
67
<action dev="Zachary Pedigo" issue="117" date="09-16-2024" type="fix">Changed icons in frontend.</action>
78
<action dev="Zachary Pedigo" issue="150" date="08-23-2024" type="fix">Fixed saving file does not detect syntax.</action>

init.bat

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@Echo off
2+
3+
REM Initialize syntax highlighter source code
4+
git submodule init
5+
git submodule update
6+

0 commit comments

Comments
 (0)