Skip to content

Commit fec0669

Browse files
remove dependencies on NRefactory
1 parent d7ccbe3 commit fec0669

File tree

141 files changed

+3661
-466
lines changed

Some content is hidden

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

141 files changed

+3661
-466
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.cs text diff=csharp
2+
*.sln text eol=crlf
3+
*.csproj text eol=crlf

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# ignore all obj and bin folders (even in subdirectories)
2+
obj/
3+
bin/

AvalonEdit.Sample.nuspec

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0"?>
2+
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3+
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
4+
<id>AvalonEdit.Sample</id>
5+
<version>4.4.0.9727</version>
6+
<authors>Daniel Grunwald</authors>
7+
<owners>SharpDevelop</owners>
8+
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
9+
<projectUrl>http://www.avalonedit.net</projectUrl>
10+
<iconUrl>http://community.sharpdevelop.net/blogs/mattward/SharpDevelop.png</iconUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>Sample code for AvalonEdit the WPF-based text editor used in SharpDevelop 4.0.
13+
Modify your App.xaml file so the StartupUri points to the AvalonEdit Sample window:
14+
15+
StartupUri="/Samples/AvalonEdit/Window1.xaml"</description>
16+
<summary>Sample code for AvalonEdit the WPF-based text editor used in SharpDevelop 4.0.</summary>
17+
<language>en-US</language>
18+
<dependencies>
19+
<dependency id="AvalonEdit" version="4.4.0.9727" />
20+
</dependencies>
21+
<frameworkAssemblies>
22+
<frameworkAssembly assemblyName="System.Windows.Forms" />
23+
<frameworkAssembly assemblyName="WindowsFormsIntegration" />
24+
</frameworkAssemblies>
25+
<tags>WPF Text Editor SharpDevelop AvalonEdit</tags>
26+
</metadata>
27+
</package>

AvalonEdit.nuspec

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0"?>
2+
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3+
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
4+
<id>AvalonEdit</id>
5+
<version>4.4.0.9727</version>
6+
<authors>Daniel Grunwald</authors>
7+
<owners>SharpDevelop</owners>
8+
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
9+
<projectUrl>http://www.avalonedit.net</projectUrl>
10+
<iconUrl>http://community.sharpdevelop.net/blogs/mattward/SharpDevelop.png</iconUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>AvalonEdit is the WPF-based text editor used in SharpDevelop. There are two builds of AvalonEdit included in this package. One that targets .NET 4.0 and one that targets .NET 3.5.</description>
13+
<summary>AvalonEdit is the WPF-based text editor used in SharpDevelop</summary>
14+
<releaseNotes>AvalonEdit 4.4 changes the Home/End keys to only act on the current TextLine when word-wrapping is enabled. It also removes the caret stop in the middle of surrogate pairs, making characters outside the basic multilingual plane work as expected.</releaseNotes>
15+
<language>en-US</language>
16+
<tags>WPF Text Editor SharpDevelop AvalonEdit</tags>
17+
</metadata>
18+
<files>
19+
<file src="lib\Net35\*.*" target="lib\Net35" />
20+
<file src="lib\Net40\*.*" target="lib\Net40" />
21+
<file src="..\..\..\..\..\Libraries\AvalonEdit\ICSharpCode.AvalonEdit\**\*.cs" target="src" />
22+
</files>
23+
</package>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Application x:Class="ICSharpCode.AvalonEdit.Sample.App"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
StartupUri="Window1.xaml">
5+
<Application.Resources>
6+
7+
</Application.Resources>
8+
</Application>
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// Copyright (c) 2009 Daniel Grunwald
2+
//
3+
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
4+
// software and associated documentation files (the "Software"), to deal in the Software
5+
// without restriction, including without limitation the rights to use, copy, modify, merge,
6+
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
7+
// to whom the Software is furnished to do so, subject to the following conditions:
8+
//
9+
// The above copyright notice and this permission notice shall be included in all copies or
10+
// substantial portions of the Software.
11+
//
12+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
13+
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
14+
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
15+
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
16+
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
17+
// DEALINGS IN THE SOFTWARE.
18+
19+
using System;
20+
using System.Windows;
21+
using System.Data;
22+
using System.Xml;
23+
using System.Configuration;
24+
25+
namespace ICSharpCode.AvalonEdit.Sample
26+
{
27+
/// <summary>
28+
/// Interaction logic for App.xaml
29+
/// </summary>
30+
public partial class App : Application
31+
{
32+
public App()
33+
{
34+
InitializeComponent();
35+
}
36+
}
37+
}
30.2 KB
Loading
49.3 KB
Loading
31 KB
Loading
84.4 KB
Loading

0 commit comments

Comments
 (0)