Browse Source

Add AddInWritingHelp.txt to project templates creating SharpDevelop AddIns that point to the documentation in the wiki.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.1@2445 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 19 years ago
parent
commit
f7b2d45b7f
  1. 24
      data/templates/project/AddInWritingHelp.txt
  2. 2
      data/templates/project/CSharp/SharpDevelopAddin.xpt
  3. 2
      data/templates/project/CSharp/SharpDevelopCustomTool.xpt
  4. 2
      data/templates/project/CSharp/SharpDevelopMacro.xpt
  5. 2
      data/templates/project/VBNet/SharpDevelopAddin.xpt
  6. 2
      data/templates/project/VBNet/SharpDevelopMacro.xpt

24
data/templates/project/AddInWritingHelp.txt

@ -0,0 +1,24 @@ @@ -0,0 +1,24 @@
You have created a new SharpDevelop AddIn project.
We would like to point out that there are three locations where you can get information on how
to write SharpDevelop AddIns:
- http://wiki.sharpdevelop.net/default.aspx/SharpDevelop.AddInWritingTutorials
- The folder "doc/techtones" in the SharpDevelop source code download
- You can ask questions about AddIn development in the SharpDevelop forum:
http://community.sharpdevelop.net/forums/
The next steps:
- First, you have to add references to the SharpDevelop assemblies.
An AddIn will work with the SharpDevelop version it was compiled for, or later service releases.
You might want to compile against SharpDevelop 2.1.0.2429 (the first final release of SharpDevelop 2.1)
to ensure your AddIn runs with all 2.1.x versions.
- Include a <Manifest> section to your .addin for use with the SharpDevelop AddIn Manager.
See SharpDevelop/doc/technotes/AddInManager.rtf for more information.
- Once have published your AddIn on the Internet, please add it to the SharpDevelop wiki to let other users know!
http://wiki.sharpdevelop.net/default.aspx/SharpDevelop.ThirdPartyAddIns
This file serves as a reminder for you on how to find information on SharpDevelop AddIn development, you can
remove it from your project if you don't need it anymore.

2
data/templates/project/CSharp/SharpDevelopAddin.xpt

@ -15,6 +15,7 @@ @@ -15,6 +15,7 @@
<!-- Actions -->
<Actions>
<Open filename = "${ProjectName}.addin"/>
<Open filename = "AddInWritingHelp.txt"/>
</Actions>
<Project language = "C#">
@ -155,6 +156,7 @@ public class TestPad : AbstractPadContent @@ -155,6 +156,7 @@ public class TestPad : AbstractPadContent
}
]]></File>
<File name="Configuration/AssemblyInfo.cs" src="DefaultAssemblyInfo.cs"/>
<File name="AddInWritingHelp.txt" src="..\AddInWritingHelp.txt"/>
</Files>
</Project>
</Template>

2
data/templates/project/CSharp/SharpDevelopCustomTool.xpt

@ -13,6 +13,7 @@ @@ -13,6 +13,7 @@
<!-- Actions -->
<Actions>
<Open filename = "${ProjectName}.addin"/>
<Open filename = "AddInWritingHelp.txt"/>
</Actions>
<Project language="C#">
@ -185,6 +186,7 @@ namespace ${StandardNamespace} @@ -185,6 +186,7 @@ namespace ${StandardNamespace}
]]></File>
<File name="FileTemplate.xft" src="SharpDevelopCustomToolTemplate.xft.xml" binary="true" CopyToOutputDirectory="Always"/>
<File name="AssemblyInfo.cs" src="DefaultAssemblyInfo.cs"/>
<File name="AddInWritingHelp.txt" src="..\AddInWritingHelp.txt"/>
</Files>
</Project>
</Template>

2
data/templates/project/CSharp/SharpDevelopMacro.xpt

@ -15,6 +15,7 @@ @@ -15,6 +15,7 @@
<!-- Actions -->
<Actions>
<Open filename = "${ProjectName}.addin"/>
<Open filename = "AddInWritingHelp.txt"/>
</Actions>
<Project language="C#">
@ -98,6 +99,7 @@ namespace ${StandardNamespace} @@ -98,6 +99,7 @@ namespace ${StandardNamespace}
}
]]></File>
<File name="Configuration/AssemblyInfo.cs" src="DefaultAssemblyInfo.cs"/>
<File name="AddInWritingHelp.txt" src="..\AddInWritingHelp.txt"/>
</Files>
</Project>
</Template>

2
data/templates/project/VBNet/SharpDevelopAddin.xpt

@ -15,6 +15,7 @@ @@ -15,6 +15,7 @@
<!-- Actions -->
<Actions>
<Open filename = "${ProjectName}.addin"/>
<Open filename = "AddInWritingHelp.txt"/>
</Actions>
<Project language="VBNet">
@ -145,6 +146,7 @@ Public Class TestPad @@ -145,6 +146,7 @@ Public Class TestPad
End Class
]]></File>
<File name="Configuration/AssemblyInfo.vb" src="DefaultAssemblyInfo.vb"/>
<File name="AddInWritingHelp.txt" src="..\AddInWritingHelp.txt"/>
</Files>
</Project>
</Template>

2
data/templates/project/VBNet/SharpDevelopMacro.xpt

@ -15,6 +15,7 @@ @@ -15,6 +15,7 @@
<!-- Actions -->
<Actions>
<Open filename = "${ProjectName}.addin"/>
<Open filename = "AddInWritingHelp.txt"/>
</Actions>
<Project language="VBNet">
@ -96,6 +97,7 @@ Inherits AbstractMenuCommand @@ -96,6 +97,7 @@ Inherits AbstractMenuCommand
End Class
]]></File>
<File name="Configuration/AssemblyInfo.vb" src="DefaultAssemblyInfo.vb"/>
<File name="AddInWritingHelp.txt" src="..\AddInWritingHelp.txt"/>
</Files>
</Project>
</Template>

Loading…
Cancel
Save