Skip to content

Commit 96660b0

Browse files
committed
rename project.proj to devnet.proj
1 parent 9f74728 commit 96660b0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Commands/RunCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function __construct()
2222
{
2323
parent::__construct('run', 'Run a DevNet project');
2424

25-
$this->addOption('--project', "Path to the project file to run, by default 'project.phproj' in current directory", '-p');
25+
$this->addOption('--project', "Path to the project file to run, by default 'devnet.proj' in current directory", '-p');
2626
}
2727

2828
public function invoke(array $args): void
@@ -61,7 +61,7 @@ public function invoke(array $args): void
6161
public function execute(array $parameters, array $arguments): void
6262
{
6363
$projectRoot = getcwd();
64-
$projectPath = $projectRoot . "/project.proj";
64+
$projectPath = $projectRoot . "/devnet.proj";
6565
$mainClass = "Application\Program";
6666
$project = $parameters['--project'] ?? null;
6767

template/bin/apphost

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ $args = $GLOBALS['argv'] ?? [];
2828
array_shift($args);
2929

3030
// initialize and launch the application
31-
$launcher = Launcher::initialize($root.'/project.proj');
31+
$launcher = Launcher::initialize($root.'/devnet.proj');
3232
$launcher->launch($args);

0 commit comments

Comments
 (0)