21 changed files with 57 additions and 22 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,18 +1,25 @@
@@ -1,18 +1,25 @@
|
||||
<?xml version="1.0"?> |
||||
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> |
||||
<id>AvalonEdit</id> |
||||
<version>4.0.0.7070</version> |
||||
<authors>Daniel Grunwald</authors> |
||||
<owners>SharpDevelop</owners> |
||||
<licenseUrl>http://www.opensource.org/licenses/lgpl-2.1.php</licenseUrl> |
||||
<projectUrl>http://www.avalonedit.net</projectUrl> |
||||
<iconUrl>http://community.sharpdevelop.net/blogs/mattward/SharpDevelop.png</iconUrl> |
||||
<requireLicenseAcceptance>true</requireLicenseAcceptance> |
||||
<description>AvalonEdit is the WPF-based text editor used in SharpDevelop 4.0. |
||||
There are two builds of AvalonEdit included in this package. One that targets .NET 4.0 and |
||||
one that targets .NET 3.5.</description> |
||||
<summary>AvalonEdit is the WPF-based text editor used in SharpDevelop 4.0.</summary> |
||||
<language>en-US</language> |
||||
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> |
||||
<id>AvalonEdit</id> |
||||
<version>4.1.0.8000</version> |
||||
<authors>Daniel Grunwald</authors> |
||||
<owners>SharpDevelop</owners> |
||||
<licenseUrl>http://www.opensource.org/licenses/lgpl-2.1.php</licenseUrl> |
||||
<projectUrl>http://www.avalonedit.net</projectUrl> |
||||
<iconUrl>http://community.sharpdevelop.net/blogs/mattward/SharpDevelop.png</iconUrl> |
||||
<requireLicenseAcceptance>true</requireLicenseAcceptance> |
||||
<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> |
||||
<summary>AvalonEdit is the WPF-based text editor used in SharpDevelop</summary> |
||||
<releaseNotes>Improved WPF text rendering performance. |
||||
Region tooltips added. |
||||
C# syntax highlighting: Do not colorize punctuation.</releaseNotes> |
||||
<language>en-US</language> |
||||
<tags>WPF Text Editor SharpDevelop AvalonEdit</tags> |
||||
</metadata> |
||||
<files> |
||||
<file src="lib\Net35\*.*" target="lib\Net35" /> |
||||
<file src="lib\Net40\*.*" target="lib\Net40" /> |
||||
<file src="..\..\..\..\..\Libraries\AvalonEdit\ICSharpCode.AvalonEdit\**\*.cs" target="src" /> |
||||
</files> |
||||
</package> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,4 +1,21 @@
@@ -1,4 +1,21 @@
|
||||
nuget.exe pack AvalonEdit\AvalonEdit.nuspec -b AvalonEdit -o AvalonEdit |
||||
nuget.exe pack AvalonEdit.Sample\AvalonEdit.Sample.nuspec -b AvalonEdit.Sample -o AvalonEdit.Sample |
||||
nuget.exe pack ICSharpCode.TextEditor\ICSharpCode.TextEditor.nuspec -b ICSharpCode.TextEditor -o ICSharpCode.TextEditor |
||||
nuget.exe pack ICSharpCode.TextEditor.Sample\ICSharpCode.TextEditor.Sample.nuspec -b ICSharpCode.TextEditor.Sample -o ICSharpCode.TextEditor.Sample |
||||
@ECHO OFF |
||||
SETLOCAL |
||||
SET msbuild=%windir%\microsoft.net\framework\v4.0.30319\msbuild |
||||
SET project=..\..\..\..\Libraries\AvalonEdit\ICSharpCode.AvalonEdit\ICSharpCode.AvalonEdit.csproj |
||||
SET buildoptions=/t:Rebuild /p:Configuration=Release /p:DebugType=PdbOnly |
||||
|
||||
@ECHO ON |
||||
:Clean debug build |
||||
%msbuild% /m %project% /t:Clean /p:Configuration=Debug /p:OutputPath=%~dp0\AvalonEdit\lib\Net40 |
||||
|
||||
:BUILD .NET 4.0 version |
||||
%msbuild% /m %project% %buildoptions% /p:OutputPath=%~dp0\AvalonEdit\lib\Net40 |
||||
|
||||
:BUILD .NET 3.5 version |
||||
%msbuild% /m %project% %buildoptions% "/p:DefineConstants=TRACE" "/p:TargetFrameworkVersion=v3.5" /p:OutputPath=%~dp0\AvalonEdit\lib\Net35 |
||||
|
||||
nuget.exe pack AvalonEdit\AvalonEdit.nuspec -Symbols -BasePath AvalonEdit -OutputDirectory AvalonEdit |
||||
nuget.exe pack AvalonEdit.Sample\AvalonEdit.Sample.nuspec -BasePath AvalonEdit.Sample -OutputDirectory AvalonEdit.Sample |
||||
|
||||
@ECHO OFF |
||||
ENDLOCAL |
Loading…
Reference in new issue