Skip to content

Commit

Permalink
Added nuget sample package
Browse files Browse the repository at this point in the history
  • Loading branch information
Brad Robinson committed Mar 10, 2011
1 parent 00122de commit 0e7fc65
Show file tree
Hide file tree
Showing 48 changed files with 27,213 additions and 2 deletions.
12 changes: 12 additions & 0 deletions MarkdownDeep.sln
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MarkdownDeepJS", "MarkdownD
{1569ED47-C7C9-4261-B6F4-7445BD0F2C95} = {1569ED47-C7C9-4261-B6F4-7445BD0F2C95}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MarkdownDeepSample", "MarkdownDeepSample\MarkdownDeepSample.csproj", "{1E5DE401-A214-4698-A48E-1144B37E437F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -89,6 +91,16 @@ Global
{AE271B39-C3D2-422B-860F-E3BA86AE4C37}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{AE271B39-C3D2-422B-860F-E3BA86AE4C37}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{AE271B39-C3D2-422B-860F-E3BA86AE4C37}.Release|Win32.ActiveCfg = Release|Any CPU
{1E5DE401-A214-4698-A48E-1144B37E437F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1E5DE401-A214-4698-A48E-1144B37E437F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1E5DE401-A214-4698-A48E-1144B37E437F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{1E5DE401-A214-4698-A48E-1144B37E437F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{1E5DE401-A214-4698-A48E-1144B37E437F}.Debug|Win32.ActiveCfg = Debug|Any CPU
{1E5DE401-A214-4698-A48E-1144B37E437F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1E5DE401-A214-4698-A48E-1144B37E437F}.Release|Any CPU.Build.0 = Release|Any CPU
{1E5DE401-A214-4698-A48E-1144B37E437F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{1E5DE401-A214-4698-A48E-1144B37E437F}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{1E5DE401-A214-4698-A48E-1144B37E437F}.Release|Win32.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
4 changes: 2 additions & 2 deletions MarkdownDeep/MarkdownDeep.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<iconUrl>http://www.toptensoftware.com/markdowndeep/nuget_icon.png</iconUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>
MarkdownDeep is a high performance .NET Markdown processor.
MarkdownDeep is a high performance .NET Markdown processor.

This package contains MarkdownDeep.NET only - it does not include the JavaScript client edition
This package contains MarkdownDeep.NET only - it does not include the JavaScript client edition
</description>
<tags>Markdown MarkdownExtra MarkdownDeep</tags>
</metadata>
Expand Down
1 change: 1 addition & 0 deletions MarkdownDeepJS/MarkdownDeepJS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="MarkdownDeepSample.nuspec" />
<None Include="MarkdownDeepJS.nuspec" />
<None Include="post_build.bat" />
<None Include="toolbar.xcf" />
Expand Down
29 changes: 29 additions & 0 deletions MarkdownDeepJS/MarkdownDeepSample.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?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>MarkdownDeep.Full.Sample</id>
<title>MarkdownDeep - Samples</title>
<version>1.1</version>
<authors>Topten Software</authors>
<owners>Topten Software</owners>
<licenseUrl>http://www.toptensoftware.com/markdowndeep/license</licenseUrl>
<projectUrl>http://www.toptensoftware.com/markdowndeep/</projectUrl>
<iconUrl>http://www.toptensoftware.com/markdowndeep/nuget_icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
This is a sample package for MarkdownDeep that demonstrates both the server side .NET component and the client side JavaScript editor.

Add this package to an ASP.NET MVC project and navigate to the http://[yourserveraddress]/MarkdownDeep
</description>
<tags>Markdown MarkdownExtra MarkdownDeep JavaScript jQuery Plugin</tags>
<dependencies>
<dependency id="MarkdownDeep.Full" version="1.1" />
</dependencies>
</metadata>
<files>
<file src="..\MarkdownDeepSample\Content\MarkdownDeep.css" target="Content\Content" />
<file src="..\MarkdownDeepSample\Content\MarkdownDeep_ToptenLogo.png" target="Content\Content" />
<file src="..\MarkdownDeepSample\Controllers\MarkdownDeep*" target="Content\Controllers" />
<file src="..\MarkdownDeepSample\Views\MarkdownDeep\*" target="Content\Views\MarkdownDeep" />
</files>
</package>
1 change: 1 addition & 0 deletions MarkdownDeepJS/post_build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ if "%1"=="Release" (
cd MarkdownDeepJS

NuGet.exe pack ".\MarkdownDeepJS.nuspec" -o "..\Output"
NuGet.exe pack ".\MarkdownDeepSample.nuspec" -o "..\Output"


)
Loading

0 comments on commit 0e7fc65

Please sign in to comment.