Skip to content

Commit a856953

Browse files
committed
Fix project and Scintilla references
Project path in solution was incorrect. Then reference to ScintillaNET was not working, added reference via nnuget.
1 parent a7059c8 commit a856953

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

ScintillaNET.Demo.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 2012
4-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScintillaNET.Demo", "ScintillaNET.Demo.csproj", "{69CE0FB9-99CF-4A40-A0AB-E39F5050054E}"
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScintillaNET.Demo", "ScintillaNET.Demo\ScintillaNET.Demo.csproj", "{69CE0FB9-99CF-4A40-A0AB-E39F5050054E}"
55
EndProject
66
Global
77
GlobalSection(SolutionConfigurationPlatforms) = preSolution

ScintillaNET.Demo/ScintillaNET.Demo.csproj

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
3434
<ItemGroup>
35-
<Reference Include="ScintillaNET" />
35+
<Reference Include="ScintillaNET, Version=3.6.3.0, Culture=neutral, processorArchitecture=MSIL">
36+
<HintPath>..\packages\jacobslusser.ScintillaNET.3.6.3\lib\net40\ScintillaNET.dll</HintPath>
37+
</Reference>
3638
<Reference Include="System" />
3739
<Reference Include="System.Core" />
3840
<Reference Include="System.Xml.Linq" />
@@ -68,6 +70,7 @@
6870
<DependentUpon>Resources.resx</DependentUpon>
6971
<DesignTime>True</DesignTime>
7072
</Compile>
73+
<None Include="packages.config" />
7174
<None Include="Properties\Settings.settings">
7275
<Generator>SettingsSingleFileGenerator</Generator>
7376
<LastGenOutput>Settings.Designer.cs</LastGenOutput>

ScintillaNET.Demo/packages.config

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="jacobslusser.ScintillaNET" version="3.6.3" targetFramework="net40" />
4+
</packages>

0 commit comments

Comments
 (0)