~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/NUnit/MonoDevelopNUnit.addin.xml

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<Addin id        = "NUnit"
 
1
<Addin id          = "NUnit"
2
2
       namespace   = "MonoDevelop"
3
 
       name      = "NUnit support"
4
 
       author    = "Lluis Sanchez, John Luke"
5
 
       copyright = "MIT X11"
6
 
       url       = "http://monodevelop.com"
 
3
       name        = "NUnit support"
 
4
       author      = "Lluis Sanchez, John Luke"
 
5
       copyright   = "MIT X11"
 
6
       url         = "http://monodevelop.com"
7
7
       description = "Integrates NUnit into the MonoDevelop IDE."
8
 
           category    = "Testing"
9
 
       version   = "3.0.3">
 
8
       category    = "Testing"
 
9
       version     = "4.0.5">
10
10
 
11
11
        <Runtime>
12
12
                <Import assembly="MonoDevelop.NUnit.dll" />
17
17
        </Runtime>
18
18
        
19
19
        <Dependencies>
20
 
                <Addin id="Core" version="3.0.3"/>
21
 
                <Addin id="Ide" version="3.0.3"/>
 
20
                <Addin id="Core" version="4.0.5"/>
 
21
                <Addin id="Ide" version="4.0.5"/>
22
22
        </Dependencies>
23
23
        
24
24
        <!-- Extension Points -->
74
74
        </Extension>
75
75
 
76
76
        <Extension path = "/MonoDevelop/Ide/Pads">
77
 
                <SolutionPad id = "MonoDevelop.NUnit.TestPad" defaultLayout="*" defaultPlacement = "Left" defaultStatus="AutoHide" _label = "Unit Tests" icon = "nunit-pad-icon" class = "MonoDevelop.NUnit.TestPad">
 
77
                <SolutionPad id = "MonoDevelop.NUnit.TestPad" defaultLayout="*" defaultPlacement = "Right" defaultStatus="AutoHide" _label = "Unit Tests" icon = "nunit-pad-icon" class = "MonoDevelop.NUnit.TestPad">
78
78
                        <PadOption id = "ShowTestTime" _label = "Show Test Time" defaultValue = "False" />
79
79
                        <PadOption id = "ShowTestCounters" _label = "Show Test Counters" defaultValue = "False" />
80
80
                        <NodeBuilder id = "TestNode" class = "MonoDevelop.NUnit.TestNodeBuilder"/>
181
181
        </Extension>
182
182
 
183
183
        <Extension path = "/MonoDevelop/Ide/ProjectTemplates">
184
 
                <ProjectTemplate id = "NUnitAssemblyGroup" resource = "NUnitAssemblyGroup.xpt.xml"/>
 
184
<!--            <ProjectTemplate id = "NUnitAssemblyGroup" resource = "NUnitAssemblyGroup.xpt.xml"/>-->
185
185
                <ProjectTemplate id = "NUnitProject" resource = "NUnitProject.xpt.xml"/>
186
186
        </Extension>
187
187
 
210
210
                <DataType class = "MonoDevelop.NUnit.NUnitAssemblyGroupProject" />
211
211
        </Extension>
212
212
 
 
213
        <Extension path = "/MonoDevelop/ProjectModel/ExtendedProperties">
 
214
                <ItemProperty class = "MonoDevelop.Projects.SolutionItemConfiguration"
 
215
                        name = "UnitTestInformation" type = "MonoDevelop.NUnit.UnitTestOptionsSet" />
 
216
                <ItemProperty class = "MonoDevelop.Projects.DotNetProject"
 
217
                        name = "TestRunnerType" type = "System.String" />
 
218
                <ItemProperty class = "MonoDevelop.Projects.DotNetProject"
 
219
                        name = "TestRunnerAssembly" type = "MonoDevelop.Core.FilePath" />
 
220
        </Extension>
 
221
 
213
222
</Addin>