Skip to content

Commit 546533a

Browse files
committed
rename "Gerrit" (old project name from main repo) to "GitExtensions.GerritPlugin" and remove "GitExtensions.PluginTemplate"
1 parent 52d43fb commit 546533a

36 files changed

+208
-472
lines changed

GitExtensions.GerritPlugin.sln

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29709.97
5+
MinimumVisualStudioVersion = 15.0.26124.0
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitExtensions.GerritPlugin", "src\GitExtensions.GerritPlugin\GitExtensions.GerritPlugin.csproj", "{58C09A62-E18E-4B76-AADB-D0B176C5424E}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
13+
Release|Any CPU = Release|Any CPU
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Debug|x64.ActiveCfg = Debug|Any CPU
21+
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Debug|x64.Build.0 = Debug|Any CPU
22+
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Debug|x86.ActiveCfg = Debug|Any CPU
23+
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Debug|x86.Build.0 = Debug|Any CPU
24+
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Release|x64.ActiveCfg = Release|Any CPU
27+
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Release|x64.Build.0 = Release|Any CPU
28+
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Release|x86.ActiveCfg = Release|Any CPU
29+
{58C09A62-E18E-4B76-AADB-D0B176C5424E}.Release|x86.Build.0 = Release|Any CPU
30+
EndGlobalSection
31+
GlobalSection(SolutionProperties) = preSolution
32+
HideSolutionNode = FALSE
33+
EndGlobalSection
34+
GlobalSection(ExtensibilityGlobals) = postSolution
35+
SolutionGuid = {464E76E6-53B0-4E56-B267-22F7F82476F1}
36+
EndGlobalSection
37+
EndGlobal

GitExtensions.PluginTemplate.sln

Lines changed: 0 additions & 37 deletions
This file was deleted.

GitExtensions.settings

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<string>BuildServer.AppVeyor.AppVeyorProjectName</string>
2222
</key>
2323
<value>
24-
<string>gitextensions/gitextensions-plugintemplate</string>
24+
<string>gitextensions/gitextensions-gerritplugin</string>
2525
</value>
2626
</item>
2727
<item>
@@ -60,7 +60,7 @@
6060
&lt;LinkFormats&gt;
6161
&lt;GitExtLinkFormat&gt;
6262
&lt;Caption&gt;View on GitHub&lt;/Caption&gt;
63-
&lt;Format&gt;https://github.com/gitextensions/gitextensions.plugintemplate/commit/%COMMIT_HASH%&lt;/Format&gt;
63+
&lt;Format&gt;https://github.com/gitextensions/GitExtensions.GerritPlugin/commit/%COMMIT_HASH%&lt;/Format&gt;
6464
&lt;/GitExtLinkFormat&gt;
6565
&lt;/LinkFormats&gt;
6666
&lt;Name&gt;GitHub - commit&lt;/Name&gt;
@@ -77,7 +77,7 @@
7777
&lt;LinkFormats&gt;
7878
&lt;GitExtLinkFormat&gt;
7979
&lt;Caption&gt;Issue {0}&lt;/Caption&gt;
80-
&lt;Format&gt;https://github.com/gitextensions/gitextensions.plugintemplate/issues/{0}&lt;/Format&gt;
80+
&lt;Format&gt;https://github.com/gitextensions/GitExtensions.GerritPlugin/issues/{0}&lt;/Format&gt;
8181
&lt;/GitExtLinkFormat&gt;
8282
&lt;/LinkFormats&gt;
8383
&lt;Name&gt;GitHub - issues&lt;/Name&gt;
@@ -96,7 +96,7 @@
9696
&lt;LinkFormats&gt;
9797
&lt;GitExtLinkFormat&gt;
9898
&lt;Caption&gt;PR {0}&lt;/Caption&gt;
99-
&lt;Format&gt;https://github.com/gitextensions/gitextensions.plugintemplate/pull/{0}&lt;/Format&gt;
99+
&lt;Format&gt;https://github.com/gitextensions/GitExtensions.GerritPlugin/pull/{0}&lt;/Format&gt;
100100
&lt;/GitExtLinkFormat&gt;
101101
&lt;/LinkFormats&gt;
102102
&lt;Name&gt;GitHub - PR&lt;/Name&gt;

appveyor.yml

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,50 @@
55
# version format
66
version: 1.0.0.{build}
77

8+
# version suffix, if any (e.g. '-RC1', '-beta' otherwise '')
9+
environment:
10+
version_suffix: '-RC1'
11+
812
# Do not build on tags (GitHub and BitBucket)
913
skip_tags: true
1014

11-
# Maximum number of concurrent jobs for the project
12-
max_jobs: 1
13-
1415
#---------------------------------#
1516
# environment configuration #
1617
#---------------------------------#
1718

1819
# Build worker image (VM template)
19-
image:
20-
- Visual Studio 2019
20+
image: Visual Studio 2019
21+
22+
# enable patching of Directory.Build.props
23+
dotnet_csproj:
24+
patch: true
25+
file: '**\*.props'
26+
version: '{version}'
27+
assembly_version: '{version}'
28+
file_version: '{version}'
29+
informational_version: '{version}$(version_suffix)'
30+
package_version: '{version}$(version_suffix)'
2131

2232
#---------------------------------#
2333
# build configuration #
2434
#---------------------------------#
2535

2636
# scripts to run before build
2737
before_build:
28-
- ps: nuget restore .\GitExtensions.PluginTemplate.sln
38+
- ps: nuget restore .\GitExtensions.GerritPlugin.sln
39+
40+
# build configuration
41+
configuration: Release
2942

3043
build:
3144
# enable MSBuild parallel builds
3245
parallel: true
3346
# MSBuild verbosity level
3447
verbosity: minimal
48+
49+
#---------------------------------#
50+
# artifacts configuration #
51+
#---------------------------------#
52+
53+
artifacts:
54+
- path: '**\GitExtensions.GerritPlugin.*.nupkg'

assets/bean.png

-664 Bytes
Binary file not shown.

src/Directory.Build.props

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!-- Do not use XML namespaces here (<Project xmlns="...">), because it would break patching of version numbers during builds on AppVeyor (https://github.com/appveyor/website/pull/409) -->
2+
<Project>
3+
<PropertyGroup>
4+
<Authors>Pieter van Ginkel, Git Extensions</Authors>
5+
<Company>Git Extensions</Company>
6+
<RepositoryUrl>https://github.com/gitextensions/GitExtensions.GerritPlugin</RepositoryUrl>
7+
<LangVersion>latest</LangVersion>
8+
<Version>0.0.0</Version>
9+
<AssemblyVersion>0.0.0.1</AssemblyVersion>
10+
<FileVersion>0.0.0.1</FileVersion>
11+
<InformationalVersion>0.0.0.1</InformationalVersion>
12+
<PackageVersion>0.0.0.1</PackageVersion>
13+
</PropertyGroup>
14+
15+
<PropertyGroup>
16+
<TargetFramework>net461</TargetFramework>
17+
<VersionPrefix>1.0.0</VersionPrefix>
18+
</PropertyGroup>
19+
</Project>

src/GitExtensions.GerritPlugin/FormGerritBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using GitUI;
33
using GitUIPluginInterfaces;
44

5-
namespace Gerrit
5+
namespace GitExtensions.GerritPlugin
66
{
77
public class FormGerritBase : GitExtensionsForm
88
{

src/GitExtensions.GerritPlugin/FormGerritChangeSubmitted.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/GitExtensions.GerritPlugin/FormGerritChangeSubmitted.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Windows.Forms;
33
using GitUI;
44

5-
namespace Gerrit
5+
namespace GitExtensions.GerritPlugin
66
{
77
public partial class FormGerritChangeSubmitted : GitExtensionsForm
88
{

src/GitExtensions.GerritPlugin/FormGerritDownload.Designer.cs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)