You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix project URL and tags in nuget package.
Publish GE.PM.nuget as AppVeyor artifact.
Publish GE.PM.zip as AppVeyor artifact.
Integrates SignPath hook on AppVeyor deploy.
Review correct "Git Extensions" naming.
Change dependency from GitExtensions.Plugins to GitExtensions.Extensibility.
PluginManager integrated into GitExtensions filters packages with dependency on `GitExtensions.Plugins`. This package is right now a kind of meta package and it is used to mark nuget packages intended as GitExtensions plugins.
14
+
PluginManager integrated into Git Extensions filters packages with dependency on `GitExtensions.Extensibility`. This package is right now a kind of meta package and it is used to mark nuget packages intended as Git Extensions plugins.
15
15
16
16
We are heading to use the official nuget.org feed to distribute plugin packages, but there is a bug (#67) which prevents us from using it.
17
17
Right now it is recommended to use https://www.myget.org/F/neptuo-gitextensions/api/v2.
18
18
19
19
### Command line arguments
20
-
PluginManager is designed to be a reusable tool to manage plugins distributed as nuget packages. This repository contains an integration package for GitExtensins.
20
+
PluginManager is designed to be a reusable tool to manage plugins distributed as nuget packages. This repository contains an integration package for Git Extensins.
21
21
As a standalone application, PluginManager supports these command line arguments:
22
22
23
23
-`--path` (required) - A root path to a directory where to install packages.
24
24
-`--selfpackageid` (optional) - A package id to indicate which package should be treated as a package for self update.
25
-
-`--dependencies` (optional) - A comma separated list of package ids and versions that are required in package to be compatible (Eg. `GitExtensions.Plugins-v3.0,TestA,TestB-v1`).
25
+
-`--dependencies` (optional) - A comma separated list of package ids and versions that are required in package to be compatible (Eg. `GitExtensions.Extensibility-v3.0,TestA,TestB-v1`).
26
26
-`--monikers` (optional) - A comma separated list of .NET framework monikers to filter package content during extraction (Eg. `net461,netstandard2.0`).
27
-
-`--processnamestokillbeforechange` - A comma separated list of process names to be killed before any changes being processed (it is used to kill all instances on GitExtensions before installing/uninstalling dlls, that might be locked).
27
+
-`--processnamestokillbeforechange` - A comma separated list of process names to be killed before any changes being processed (it is used to kill all instances on Git Extensions before installing/uninstalling dlls, that might be locked).
Copy file name to clipboardExpand all lines: src/GitExtensions.PluginManager/PluginSettings.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ internal class PluginSettings : IEnumerable<ISetting>
13
13
/// <summary>
14
14
/// Gets a property holding if asking to close git extensions is required.
15
15
/// </summary>
16
-
publicstaticBoolSettingCloseInstancesProperty{get;}=newBoolSetting("CloseInstances","Close all instances of GitExtensions before starting PluginManager",false);
16
+
publicstaticBoolSettingCloseInstancesProperty{get;}=newBoolSetting("CloseInstances","Close all instances of Git Extensions before starting PluginManager",false);
0 commit comments