Changes recommended by Rider/Resharper
This commit is contained in:
@@ -10,8 +10,8 @@ namespace VAR.Toolbox.TestPlugin
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public string ToolName { get { return "Test"; } }
|
||||
public string ToolName => "Test";
|
||||
|
||||
public bool HasIcon { get { return false; } }
|
||||
public bool HasIcon => false;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -3,11 +3,12 @@
|
||||
* Build as class library.
|
||||
* Add reference to ```VAR.Toolbox``` for interface declarations and utilities.
|
||||
* Use the interfaces to extend functionality:
|
||||
* ```IToolForm```: Tool window.
|
||||
* ```IToolPanel```: Tool panels in the main window. Try to fit all on 200px width.
|
||||
* ```ITextCoder```: Text codification clases.
|
||||
* ```IProxyCmdExecutor```: Proxy command executors, mainly for remote executions.
|
||||
* ```IToolForm```: Tool window.
|
||||
* ```IToolPanel```: Tool panels in the main window. Try to fit all on 200px width.
|
||||
* ```ITextCoder```: Text codification clases.
|
||||
* ```IProxyCmdExecutor```: Proxy command executors, mainly for remote executions.
|
||||
|
||||
## Usage
|
||||
|
||||
Put the generated assembly near ```VAR.Toolbox.exe``` it will load as plug-ins any assembly that starts with ```VAR.Toolbox```
|
||||
Put the generated assembly near ```VAR.Toolbox.exe``` it will load as plug-ins any assembly that starts
|
||||
with ```VAR.Toolbox```
|
||||
@@ -32,4 +32,4 @@ using System.Runtime.InteropServices;
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
@@ -9,9 +9,10 @@
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>VAR.Toolbox.TestPlugin</RootNamespace>
|
||||
<AssemblyName>VAR.Toolbox.TestPlugin</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Deterministic>true</Deterministic>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
|
||||
Reference in New Issue
Block a user