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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ We love contributions to get started contributing you might need:
3
3
4
4
-[Get started with git](http://rogerdudler.github.io/git-guide)
5
5
-[How to create a pull request](https://help.github.com/articles/using-pull-requests)
6
-
-[An issue to work on](https://github.com/ParticularLabs/GitVersion/labels/up-for-grabs) - We are on [Up for grabs](http://up-for-grabs.net/), our up for grabs issues are tagged `up-for-grabs`
6
+
-[An issue to work on](https://github.com/GitTools/GitVersion/labels/up-for-grabs) - We are on [Up for grabs](http://up-for-grabs.net/), our up for grabs issues are tagged `up-for-grabs`
7
7
- An understanding of our [architecture](#architecture) and how [we write tests](#writing-tests)
8
8
9
9
Once you know how to create a pull request and have an issue to work on, just post a comment saying you will work on it.
error.Message.ShouldContainWithoutWhitespace(@"GitVersionConfig.yaml contains old configuration, please fix the following errors:
66
66
assemblyVersioningScheme has been replaced by assembly-versioning-scheme
67
-
develop-branch-tag has been replaced by branch specific configuration.See https://github.com/ParticularLabs/GitVersion/wiki/Branch-Specific-Configuration
68
-
release-branch-tag has been replaced by branch specific configuration.See https://github.com/ParticularLabs/GitVersion/wiki/Branch-Specific-Configuration");
67
+
develop-branch-tag has been replaced by branch specific configuration.See http://gitversion.readthedocs.org/en/latest/configuration/#branch-configuration
68
+
release-branch-tag has been replaced by branch specific configuration.See http://gitversion.readthedocs.org/en/latest/configuration/#branch-configuration");
Copy file name to clipboardExpand all lines: src/GitVersionCore/Configuration/LegacyConfigNotifier.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,10 +21,10 @@ public static void Notify(StringReader reader)
21
21
issues.Add("assemblyVersioningScheme has been replaced by assembly-versioning-scheme");
22
22
23
23
if(legacyConfig.DevelopBranchTag!=null)
24
-
issues.Add("develop-branch-tag has been replaced by branch specific configuration. See https://github.com/ParticularLabs/GitVersion/wiki/Branch-Specific-Configuration");
24
+
issues.Add("develop-branch-tag has been replaced by branch specific configuration. See http://gitversion.readthedocs.org/en/latest/configuration/#branch-configuration");
25
25
26
26
if(legacyConfig.ReleaseBranchTag!=null)
27
-
issues.Add("release-branch-tag has been replaced by branch specific configuration. See https://github.com/ParticularLabs/GitVersion/wiki/Branch-Specific-Configuration");
27
+
issues.Add("release-branch-tag has been replaced by branch specific configuration. See http://gitversion.readthedocs.org/en/latest/configuration/#branch-configuration");
28
28
29
29
if(issues.Any())
30
30
thrownewOldConfigurationException("GitVersionConfig.yaml contains old configuration, please fix the following errors:\r\n"+string.Join("\r\n",issues));
thrownewException("NextVersion.txt has been depreciated. See https://github.com/ParticularLabs/GitVersion/wiki/GitVersionConfig.yaml-Configuration-File for replacement");
18
+
thrownewWarningException("NextVersion.txt has been depreciated. See http://gitversion.readthedocs.org/en/latest/configuration/ for replacement");
varmessage=string.Format("It looks like the branch being examined is a detached Head pointing to commit '{0}'. Without a proper branch name GitVersion cannot determine the build version.",context.CurrentCommit.Id.ToString(7));
37
+
varmessage=string.Format(
38
+
"It looks like the branch being examined is a detached Head pointing to commit '{0}'. "+
39
+
"Without a proper branch name GitVersion cannot determine the build version.",
0 commit comments