Skip to content

Commit

Permalink
MachMode -> Lyfe
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbilas committed Feb 16, 2024
1 parent f9a08aa commit 2b46f77
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions OkTools.sln
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PmlTool.Cli", "src\PmlTool.
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.PerfTests", "perftests\Core.PerfTests\Core.PerfTests.csproj", "{3D70F5C9-4AA8-4B3F-AB87-E23B8F6B7507}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MachMode.Cli", "src\MachMode.Cli\MachMode.Cli.csproj", "{14022DF9-B6B2-45FE-8991-07D3B00EC4DA}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lyfe.Cli", "src\Lyfe.Cli\Lyfe.Cli.csproj", "{14022DF9-B6B2-45FE-8991-07D3B00EC4DA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MachModeCli-Tests", "src\MachMode.Cli\MachModeCli-Tests.csproj", "{C875B7D7-7FF4-4732-9FE0-A7A35D077F94}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LyfeCli-Tests", "src\Lyfe.Cli\LyfeCli-Tests.csproj", "{C875B7D7-7FF4-4732-9FE0-A7A35D077F94}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="$(OkTargetsRoot)Exe.targets" />

<PropertyGroup>
<AssemblyName>machmode</AssemblyName>
<AssemblyName>lyfe</AssemblyName>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Import Project="$(OkTargetsRoot)Tests.targets" />

<ItemGroup>
<ProjectReference Include="MachMode.Cli.csproj" />
<ProjectReference Include="Lyfe.Cli.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* for now require that all locations and capabilities and profiles etc. are globally uniquely named so don't have to worry about scoping
*/

var (exitCode, opt) = MachModeCliArguments.CreateParser().Parse(args, programVersion, MachModeCliArguments.Help, MachModeCliArguments.Usage);
var (exitCode, /*opt*/_) = LyfeCliArguments.CreateParser().Parse(args, programVersion, LyfeCliArguments.Help, LyfeCliArguments.Usage);
if (exitCode != null)
return (int)exitCode.Value;

Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions src/Lyfe.Cli/LyfeCliArguments.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sealed partial class LyfeCliArguments;
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if ($asusService -and ($asusService.Status -ne 'Stopped' -or $asusService.StartT
Write-Warning 'Tell G-Helper to kill ASUS services'
}

$config = Get-Content machmode.yaml | ConvertFrom-Yaml
$config = Get-Content lyfe.yaml | ConvertFrom-Yaml

$modesConfig = [ordered]@{}

Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion src/MachMode.Cli/MachModeCliArguments.cs

This file was deleted.

0 comments on commit 2b46f77

Please sign in to comment.