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 @@ |
|||||||
<?xml version="1.0"?> |
<?xml version="1.0"?> |
||||||
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
<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"> |
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> |
||||||
<id>AvalonEdit</id> |
<id>AvalonEdit</id> |
||||||
<version>4.0.0.7070</version> |
<version>4.1.0.8000</version> |
||||||
<authors>Daniel Grunwald</authors> |
<authors>Daniel Grunwald</authors> |
||||||
<owners>SharpDevelop</owners> |
<owners>SharpDevelop</owners> |
||||||
<licenseUrl>http://www.opensource.org/licenses/lgpl-2.1.php</licenseUrl> |
<licenseUrl>http://www.opensource.org/licenses/lgpl-2.1.php</licenseUrl> |
||||||
<projectUrl>http://www.avalonedit.net</projectUrl> |
<projectUrl>http://www.avalonedit.net</projectUrl> |
||||||
<iconUrl>http://community.sharpdevelop.net/blogs/mattward/SharpDevelop.png</iconUrl> |
<iconUrl>http://community.sharpdevelop.net/blogs/mattward/SharpDevelop.png</iconUrl> |
||||||
<requireLicenseAcceptance>true</requireLicenseAcceptance> |
<requireLicenseAcceptance>true</requireLicenseAcceptance> |
||||||
<description>AvalonEdit is the WPF-based text editor used in SharpDevelop 4.0. |
<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> |
||||||
There are two builds of AvalonEdit included in this package. One that targets .NET 4.0 and |
<summary>AvalonEdit is the WPF-based text editor used in SharpDevelop</summary> |
||||||
one that targets .NET 3.5.</description> |
<releaseNotes>Improved WPF text rendering performance. |
||||||
<summary>AvalonEdit is the WPF-based text editor used in SharpDevelop 4.0.</summary> |
Region tooltips added. |
||||||
<language>en-US</language> |
C# syntax highlighting: Do not colorize punctuation.</releaseNotes> |
||||||
|
<language>en-US</language> |
||||||
|
<tags>WPF Text Editor SharpDevelop AvalonEdit</tags> |
||||||
</metadata> |
</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> |
</package> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,4 +1,21 @@ |
|||||||
nuget.exe pack AvalonEdit\AvalonEdit.nuspec -b AvalonEdit -o AvalonEdit |
@ECHO OFF |
||||||
nuget.exe pack AvalonEdit.Sample\AvalonEdit.Sample.nuspec -b AvalonEdit.Sample -o AvalonEdit.Sample |
SETLOCAL |
||||||
nuget.exe pack ICSharpCode.TextEditor\ICSharpCode.TextEditor.nuspec -b ICSharpCode.TextEditor -o ICSharpCode.TextEditor |
SET msbuild=%windir%\microsoft.net\framework\v4.0.30319\msbuild |
||||||
nuget.exe pack ICSharpCode.TextEditor.Sample\ICSharpCode.TextEditor.Sample.nuspec -b ICSharpCode.TextEditor.Sample -o ICSharpCode.TextEditor.Sample |
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