Skip to content

Commit 0ca8727

Browse files
committed
(GH-20) Removed Particular specific configuration
- So as not to break anything, or confuse tests, etc, remove the configuration that is Particular specific
1 parent 065e1ee commit 0ca8727

10 files changed

+10
-442
lines changed

Source/GitHubReleaseManager.Tests/ReleaseNotesBuilderIntegrationTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public async void SingleMilestone()
2525
var currentDirectory = Environment.CurrentDirectory;
2626
var configuration = ConfigurationProvider.Provide(currentDirectory, fileSystem);
2727

28-
var releaseNotesBuilder = new ReleaseNotesBuilder(new DefaultGitHubClient(gitHubClient, "Particular", "NServiceBus"), "Particular", "NServiceBus", "5.1.0", configuration);
28+
var releaseNotesBuilder = new ReleaseNotesBuilder(new DefaultGitHubClient(gitHubClient, "Chocolatey", "ChocolateyGUI"), "Chocolatey", "ChocolateyGUI", "0.12.4", configuration);
2929
var result = await releaseNotesBuilder.BuildReleaseNotes();
3030
Debug.WriteLine(result);
3131
ClipBoardHelper.SetClipboard(result);
@@ -40,7 +40,7 @@ public async void SingleMilestone3()
4040
var currentDirectory = Environment.CurrentDirectory;
4141
var configuration = ConfigurationProvider.Provide(currentDirectory, fileSystem);
4242

43-
var releaseNotesBuilder = new ReleaseNotesBuilder(new DefaultGitHubClient(gitHubClient, "Particular", "ServiceControl"), "Particular", "ServiceControl", "1.0.0-Beta4", configuration);
43+
var releaseNotesBuilder = new ReleaseNotesBuilder(new DefaultGitHubClient(gitHubClient, "Chocolatey", "ChocolateyGUI"), "Chocolatey", "ChocolateyGUI", "0.13.0", configuration);
4444
var result = await releaseNotesBuilder.BuildReleaseNotes();
4545
Debug.WriteLine(result);
4646
ClipBoardHelper.SetClipboard(result);

Source/GitHubReleaseManager.Tests/ReleaseNotesBuilderTests.NoCommitsSingularIssues.approved.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
As part of this release we had [1 issue](https://github.com/FakeRepo/issues/issues?milestone=0&state=closed) closed.
1+
As part of this release we had [1 issue](https://github.com/FakeRepository/issues/issues?milestone=0&state=closed) closed.
22

33

44
__Bug__

Source/GitHubReleaseManager.Tests/ReleaseNotesBuilderTests.NoCommitsSomeIssues.approved.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
As part of this release we had [3 issues](https://github.com/FakeRepo/issues/issues?milestone=0&state=closed) closed.
1+
As part of this release we had [3 issues](https://github.com/FakeRepository/issues/issues?milestone=0&state=closed) closed.
22

33

44
__Bug__

Source/GitHubReleaseManager.Tests/ReleaseNotesBuilderTests.SingularCommitsSingularIssues.approved.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
As part of this release we had [1 commit](https://github.com/TestUser/FakeRepository/commits/1.2.3) which resulted in [1 issue](https://github.com/FakeRepo/issues/issues?milestone=0&state=closed) being closed.
1+
As part of this release we had [1 commit](https://github.com/TestUser/FakeRepository/commits/1.2.3) which resulted in [1 issue](https://github.com/FakeRepository/issues/issues?milestone=0&state=closed) being closed.
22

33

44
__Bug__

Source/GitHubReleaseManager.Tests/ReleaseNotesBuilderTests.SingularCommitsSomeIssues.approved.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
As part of this release we had [1 commit](https://github.com/TestUser/FakeRepository/commits/1.2.3) which resulted in [3 issues](https://github.com/FakeRepo/issues/issues?milestone=0&state=closed) being closed.
1+
As part of this release we had [1 commit](https://github.com/TestUser/FakeRepository/commits/1.2.3) which resulted in [3 issues](https://github.com/FakeRepository/issues/issues?milestone=0&state=closed) being closed.
22

33

44
__Bug__

Source/GitHubReleaseManager.Tests/ReleaseNotesBuilderTests.SomeCommitsSingularIssues.approved.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
As part of this release we had [5 commits](https://github.com/TestUser/FakeRepository/commits/1.2.3) which resulted in [1 issue](https://github.com/FakeRepo/issues/issues?milestone=0&state=closed) being closed.
1+
As part of this release we had [5 commits](https://github.com/TestUser/FakeRepository/commits/1.2.3) which resulted in [1 issue](https://github.com/FakeRepository/issues/issues?milestone=0&state=closed) being closed.
22

33

44
__Bug__

Source/GitHubReleaseManager.Tests/ReleaseNotesBuilderTests.SomeCommitsSomeIssues.approved.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
As part of this release we had [5 commits](https://github.com/TestUser/FakeRepository/commits/1.2.3) which resulted in [3 issues](https://github.com/FakeRepo/issues/issues?milestone=0&state=closed) being closed.
1+
As part of this release we had [5 commits](https://github.com/TestUser/FakeRepository/commits/1.2.3) which resulted in [3 issues](https://github.com/FakeRepository/issues/issues?milestone=0&state=closed) being closed.
22

33

44
__Bug__

Source/GitHubReleaseManager.Tests/ReleaseNotesBuilderTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ private static Milestone CreateMilestone(string version)
112112
return new Milestone
113113
{
114114
Title = version,
115-
Url = new Uri("https://github.com/Particular/FakeRepo/issues?q=milestone%3A" + version)
115+
Url = new Uri("https://github.com/gep13/FakeRepository/issues?q=milestone%3A" + version)
116116
};
117117
}
118118

Source/GitHubReleaseManager.sln.DotSettings

Lines changed: 1 addition & 412 deletions
Large diffs are not rendered by default.

Source/nuget.config

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

0 commit comments

Comments
 (0)