Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Change the target framework to .Net Framework 4 (DeltaShell is build using the .Net version 4.0)

Go to the debug page and set the startup program to : D:\DeltaShell.Plugins.VolumeModel\bin\Debug\DeltaShell\DeltaShell.Gui.exe

 

 

 

...

Image Added

Create an application plugin class

Add a class named "VolumeModelApplicationPlugin " to the project and add the following code describing the plugin:

Code Block
using DelftTools.Shell.Core;
using Mono.Addins;

namespace DeltaShell.Plugins.VolumeModel
{
    [Extension(typeof(IPlugin))]
    public class VolumeModelApplicationPlugin : ApplicationPlugin
    {
        public override string Name
        {
            get { return "VolumeModelApplication"; }
        }
        public override string DisplayName
        {
            get { return "Volume model application"; }
        }
        public override string Description
        {
            get { return "Application plugin of the volume model application"; }
        }
        public override string Version
        {
            get { return "1.0"; }
        }
        public override string FileFormatVersion
        {
            get { return "1.0"; }
        }
    }
}