Skip to content

Commit

Permalink
sigh (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpannella authored Sep 8, 2023
1 parent cb7a16a commit eda4cc6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/net6.0/pocket_updater.dll",
"args": [],
"args": ["-p", "/Users/mattpannella/pocket-test"],
"cwd": "${workspaceFolder}",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "integratedTerminal",
Expand Down
2 changes: 1 addition & 1 deletion pocket_updater.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>2.33.0</Version>
<Version>2.33.1</Version>
<Description>Keep your Analogue Pocket up to date</Description>
<Copyright>2023 Matt Pannella</Copyright>
<Authors>Matt Pannella</Authors>
Expand Down
3 changes: 3 additions & 0 deletions src/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ private static async Task Main(string[] args)
if(o.PreservePlatformsFolder) {
preservePlatformsFolder = true;
}
if(o.CoreName != null && o.CoreName != "") {
coreName = o.CoreName;
}
}
)
.WithParsed<AssetsOptions>(async o =>
Expand Down

0 comments on commit eda4cc6

Please sign in to comment.