Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3903 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
7 changed files with 46 additions and 0 deletions
After Width: | Height: | Size: 2.5 KiB |
@ -0,0 +1,38 @@ |
|||||||
|
<?xml version="1.0"?> |
||||||
|
<Template originator="Matt Ward"> |
||||||
|
<TemplateConfiguration> |
||||||
|
<Name>${res:Templates.Project.ClassLibrary.Name}</Name> |
||||||
|
<Category>Python</Category> |
||||||
|
<Icon>Python.Template.LibraryProject</Icon> |
||||||
|
<Description>${res:Templates.Project.ClassLibrary.Description}</Description> |
||||||
|
</TemplateConfiguration> |
||||||
|
|
||||||
|
<!-- Actions --> |
||||||
|
<Actions> |
||||||
|
<Open filename="MyClass.py"/> |
||||||
|
</Actions> |
||||||
|
|
||||||
|
<!-- Template Content --> |
||||||
|
<Project language="Python"> |
||||||
|
<PropertyGroup> |
||||||
|
<OutputType>Library</OutputType> |
||||||
|
<DebugInfo>True</DebugInfo> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
<ProjectItems> |
||||||
|
<Reference Include="mscorlib"/> |
||||||
|
<Reference Include="System"/> |
||||||
|
<Reference Include="System.Data"/> |
||||||
|
<Reference Include="System.Xml"/> |
||||||
|
<Reference Include="$(PythonBinPath)\IronPython.dll"/> |
||||||
|
</ProjectItems> |
||||||
|
|
||||||
|
<Files> |
||||||
|
<File name="MyClass.py"><![CDATA[ |
||||||
|
class MyClass: |
||||||
|
def __init__(self): |
||||||
|
pass |
||||||
|
]]></File> |
||||||
|
</Files> |
||||||
|
</Project> |
||||||
|
</Template> |
Binary file not shown.
Loading…
Reference in new issue