Skip to content

Commit 639eadb

Browse files
authored
Merge pull request #14 from maraf/BuildPipeline
Integration of CI build on AppVeyor. Closes #2.
2 parents 5aeb87f + ce1aee1 commit 639eadb

20 files changed

+48
-42
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# GitExtensions.PluginManager
2-
NuGet based plugin manager for GitExtensions
2+
NuGet based plugin manager for Git Extensions
33

44
![Preview](/assets/screenshot-search.png)
55

@@ -11,20 +11,20 @@ Nightly builds of PluginManager available at Appveyor - https://ci.appveyor.com/
1111
[![Build status](https://ci.appveyor.com/api/projects/status/k3y0frp1pgsyepwh?svg=true)](https://ci.appveyor.com/project/neptuo/gitextensions-pluginmanager)
1212

1313
### Browsing for packages
14-
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.
1515

1616
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.
1717
Right now it is recommended to use https://www.myget.org/F/neptuo-gitextensions/api/v2.
1818

1919
### 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.
2121
As a standalone application, PluginManager supports these command line arguments:
2222

2323
- `--path` (required) - A root path to a directory where to install packages.
2424
- `--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`).
2626
- `--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).
2828

2929
### Icons
3030

appveyor.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: '{build}'
2+
3+
image: Visual Studio 2017
4+
5+
build_script:
6+
- ps: .\tools\Prepare-Release.ps1
7+
8+
test_script:
9+
- ps: .\tools\Run-Tests.ps1
10+
11+
artifacts:
12+
- path: .\*.zip
13+
- path: .\*.nupkg
14+
15+
# Commented out as we need to create a new signing policy.
16+
# deploy:
17+
# - provider: Webhook
18+
# on:
19+
# ARTIFACT_SIGNING_ENABLED: true
20+
# url: https://app.signpath.io/API/v1/7c19b2cf-90f7-4d15-9b12-1b615f7c18c4/Integrations/AppVeyor?SigningPolicyId=5c9879c7-0dea-4303-8e5b-fc4192a7b0de
21+
# on_build_success: true
22+
# on_build_failure: false
23+
# on_build_status_changed: false
24+
# method: POST
25+
# authorization:
26+
# secure: RdmJQ3LAsGIbtqbxlcn7wF8ESTbPSDiR0Fmyt11mDl+avSDd0HKexHA+sWQA3cN1K8aVnKTzvjGTQS8DSDmLzQ==
2.33 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

data/NuGetFeed/PluginA.1.0.0.nupkg

1.78 KB
Binary file not shown.

data/NuGetFeed/PluginA.1.1.0.nupkg

1.78 KB
Binary file not shown.

data/NuGetFeed/PluginB.1.0.0.nupkg

1.78 KB
Binary file not shown.

data/NuGetFeed/PluginB.2.0.0.nupkg

2.14 KB
Binary file not shown.

src/Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22

33
<PropertyGroup>
4-
<Authors>GitExtensions</Authors>
5-
<Company>GitExtensions</Company>
4+
<Authors>Git Extensions</Authors>
5+
<Company>Git Extensions</Company>
66
<RepositoryUrl>https://github.com/gitextensions/gitextensions.pluginmanager</RepositoryUrl>
77
<LangVersion>latest</LangVersion>
88

0 commit comments

Comments
 (0)