Skip to content

Commit

Permalink
fix: update remote URLs
Browse files Browse the repository at this point in the history
refactor: update 'SPV3-Loader' to 'SPV3.Loader'
  • Loading branch information
BinToss committed Nov 15, 2021
1 parent 2cb9730 commit 79e446e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
RID: "win-x86"
TFM: "net5.0-windows"
ASSEMBLYNAME: "SPV3-Loader"
ASSEMBLYNAME: "SPV3.Loader"
CSPROJ_RELPATH: "./src/SPV3.csproj"

steps:
Expand Down
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "debug_net5.0-windows_win10-x64",
"program": "${workspaceFolder}/bin/Debug/net5.0-windows/win10-x64/SPV3-Loader.exe",
"program": "${workspaceFolder}/bin/Debug/net5.0-windows/win10-x64/SPV3.Loader.exe",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "SPV3-Loader",
"name": "SPV3.Loader",
"description": "Automate commit messages quality, changelog generation, and release creation",
"version": "1.0.0",
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/Version.Assembly.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void Initialise()

Version = version;
Content = $"Version {version}-{refHash.ToUpper()}";
Address = $"https://github.com/HaloSPV3/SPV3-Loader/commit/{refHash}";
Address = $"https://github.com/HaloSPV3/SPV3.Loader/commit/{refHash}";
Visibility = Visibility.Visible;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void Changelog()
{
var startInfo = new ProcessStartInfo()
{
FileName = "https://github.com/HaloSPV3/SPV3-Loader/compare/" +
FileName = "https://github.com/HaloSPV3/SPV3.Loader/compare/" +
$"v{Assembly.Version}...v{Upstream.Version}",
UseShellExecute = true
};
Expand Down

0 comments on commit 79e446e

Please sign in to comment.