Skip to content

Commit 870967d

Browse files
committed
(GH-10) Renamed all Projects
- Made Project Names, and output file names more descriptive as to what this tool actually does. i.e. we now refer to this as GitHubReleaseManager
1 parent 1bd1dcb commit 870967d

39 files changed

+73
-79
lines changed

Source/App/CommonSubOptions.cs renamed to Source/GitHubReleaseManager.Cli/CommonSubOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// </copyright>
55
//-----------------------------------------------------------------------
66

7-
namespace ReleaseNotesCompiler.CLI
7+
namespace GitHubReleaseManager.Cli
88
{
99
using CommandLine;
1010
using Octokit;
@@ -25,7 +25,7 @@ public abstract class CommonSubOptions
2525
public GitHubClient CreateGitHubClient()
2626
{
2727
var creds = new Credentials(this.UserName, this.Password);
28-
var github = new GitHubClient(new ProductHeaderValue("ReleaseNotesCompiler")) { Credentials = creds };
28+
var github = new GitHubClient(new ProductHeaderValue("GitHubReleaseManager")) { Credentials = creds };
2929
return github;
3030
}
3131
}

Source/App/CreateSubOptions.cs renamed to Source/GitHubReleaseManager.Cli/CreateSubOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// </copyright>
55
//-----------------------------------------------------------------------
66

7-
namespace ReleaseNotesCompiler.CLI
7+
namespace GitHubReleaseManager.Cli
88
{
99
using CommandLine;
1010

Source/App/ReleaseNotesCompiler.CLI.csproj renamed to Source/GitHubReleaseManager.Cli/GitHubReleaseManager.Cli.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<ProjectGuid>{F1163F09-3D4E-4F95-AF46-24C15AB297FB}</ProjectGuid>
88
<OutputType>Exe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>ReleaseNotesCompiler.CLI</RootNamespace>
11-
<AssemblyName>ReleaseNotesCompiler.CLI</AssemblyName>
10+
<RootNamespace>GitHubReleaseManager.Cli</RootNamespace>
11+
<AssemblyName>GitHubReleaseManager</AssemblyName>
1212
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<NuGetPackageImportStamp>b15419ce</NuGetPackageImportStamp>
@@ -33,7 +33,7 @@
3333
<PlatformTarget>AnyCPU</PlatformTarget>
3434
<DebugType>pdbonly</DebugType>
3535
<Optimize>true</Optimize>
36-
<OutputPath>bin\Release\</OutputPath>
36+
<OutputPath>..\..\BuildArtifacts\</OutputPath>
3737
<DefineConstants>TRACE;CODE_ANALYSIS</DefineConstants>
3838
<ErrorReport>prompt</ErrorReport>
3939
<WarningLevel>4</WarningLevel>
@@ -71,9 +71,9 @@
7171
</None>
7272
</ItemGroup>
7373
<ItemGroup>
74-
<ProjectReference Include="..\Compiler\ReleaseNotesCompiler.csproj">
74+
<ProjectReference Include="..\GitHubReleaseManager\GitHubReleaseManager.csproj">
7575
<Project>{b02a026e-ca3a-48f4-bba9-eb337b0a2035}</Project>
76-
<Name>ReleaseNotesCompiler</Name>
76+
<Name>GitHubReleaseManager</Name>
7777
</ProjectReference>
7878
</ItemGroup>
7979
<ItemGroup>

Source/App/Options.cs renamed to Source/GitHubReleaseManager.Cli/Options.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// </copyright>
55
//-----------------------------------------------------------------------
66

7-
namespace ReleaseNotesCompiler.CLI
7+
namespace GitHubReleaseManager.Cli
88
{
99
using CommandLine;
1010
using CommandLine.Text;

Source/App/Program.cs renamed to Source/GitHubReleaseManager.Cli/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// </copyright>
55
//-----------------------------------------------------------------------
66

7-
namespace ReleaseNotesCompiler.CLI
7+
namespace GitHubReleaseManager.Cli
88
{
99
using System;
1010
using System.IO;

Source/App/PublishSubOptions.cs renamed to Source/GitHubReleaseManager.Cli/PublishSubOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// </copyright>
55
//-----------------------------------------------------------------------
66

7-
namespace ReleaseNotesCompiler.CLI
7+
namespace GitHubReleaseManager.Cli
88
{
99
public class PublishSubOptions : CommonSubOptions
1010
{

0 commit comments

Comments
 (0)