Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/All.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,6 @@
<Folder Name="/Nitro/CommandLine/" />
<Folder Name="/Nitro/CommandLine/src/">
<Project Path="Nitro/CommandLine/src/CommandLine/Nitro.CommandLine.csproj" />
<Project Path="Nitro/CommandLine/src/CommandLine.Core/Nitro.CommandLine.Core.csproj" />
<Project Path="Nitro/CommandLine/src/CommandLine.Fusion.Compatibility/Nitro.CommandLine.Fusion.Compatibility.csproj" />
</Folder>
<Folder Name="/Nitro/CommandLine/test/">
Expand Down
1 change: 0 additions & 1 deletion src/Nitro/CommandLine/Nitro.CommandLine.slnx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Solution>
<Folder Name="/src/">
<Project Path="src/CommandLine/Nitro.CommandLine.csproj" />
<Project Path="src/CommandLine.Core/Nitro.CommandLine.Core.csproj" />
<Project Path="src/CommandLine.Fusion.Compatibility/Nitro.CommandLine.Fusion.Compatibility.csproj" />
</Folder>
<Folder Name="/test/">
Expand Down
160 changes: 0 additions & 160 deletions src/Nitro/CommandLine/src/CommandLine.Core/Helpers/ConsoleHelpers.cs

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System.CommandLine.Invocation;
using ChilliCream.Nitro.CommandLine.Client;
using ChilliCream.Nitro.CommandLine.Commands.Apis.Components;
using ChilliCream.Nitro.CommandLine.Helpers;
using ChilliCream.Nitro.CommandLine.Options;
using ChilliCream.Nitro.CommandLine.Services.Sessions;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System.Text.Json;
using ChilliCream.Nitro.CommandLine.Client;
using ChilliCream.Nitro.CommandLine.Configuration;
using ChilliCream.Nitro.CommandLine.Helpers;
using ChilliCream.Nitro.CommandLine.Options;
using ChilliCream.Nitro.CommandLine.Services.Configuration;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System.CommandLine.Invocation;
using ChilliCream.Nitro.CommandLine.Client;
using ChilliCream.Nitro.CommandLine.Configuration;
using ChilliCream.Nitro.CommandLine.Helpers;
using ChilliCream.Nitro.CommandLine.Options;
using ChilliCream.Nitro.CommandLine.Services.Sessions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Text.Json;
using ChilliCream.Nitro.CommandLine.Client;
using ChilliCream.Nitro.CommandLine.Commands.Fusion.PublishCommand;
using ChilliCream.Nitro.CommandLine.Helpers;
using ChilliCream.Nitro.CommandLine.Options;
using ChilliCream.Nitro.CommandLine.Settings;
using HotChocolate.Fusion;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Net;
using System.Net.Sockets;
using System.Runtime.InteropServices;
using ChilliCream.Nitro.CommandLine.Helpers;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Hosting;
Expand Down Expand Up @@ -54,7 +55,7 @@

port ??= GetRandomUnusedPort();

var host = new WebHostBuilder()

Check warning on line 58 in src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionRunCommand.cs

View workflow job for this annotation

GitHub Actions / Run Nitro.CommandLine.Tests

'IWebHostBuilder.Build()' is obsolete: 'IWebHost is obsolete. Use IHost instead. For more information, visit https://aka.ms/aspnet/deprecate/008.' (https://aka.ms/aspnet/deprecate/008)

Check warning on line 58 in src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionRunCommand.cs

View workflow job for this annotation

GitHub Actions / Run Nitro.CommandLine.Tests

'WebHostBuilder' is obsolete: 'WebHostBuilder is deprecated in favor of HostBuilder and WebApplicationBuilder. For more information, visit https://aka.ms/aspnet/deprecate/004.' (https://aka.ms/aspnet/deprecate/004)

Check warning on line 58 in src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionRunCommand.cs

View workflow job for this annotation

GitHub Actions / Run Nitro.CommandLine.Tests

'IWebHostBuilder.Build()' is obsolete: 'IWebHost is obsolete. Use IHost instead. For more information, visit https://aka.ms/aspnet/deprecate/008.' (https://aka.ms/aspnet/deprecate/008)

Check warning on line 58 in src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionRunCommand.cs

View workflow job for this annotation

GitHub Actions / Run Nitro.CommandLine.Tests

'WebHostBuilder' is obsolete: 'WebHostBuilder is deprecated in favor of HostBuilder and WebApplicationBuilder. For more information, visit https://aka.ms/aspnet/deprecate/004.' (https://aka.ms/aspnet/deprecate/004)
.UseKestrel()
.UseUrls(new UriBuilder("http", "localhost", port.Value).ToString())
.ConfigureServices(services =>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using ChilliCream.Nitro.CommandLine.Client;
using ChilliCream.Nitro.CommandLine.Helpers;
using ChilliCream.Nitro.CommandLine.Options;
using ChilliCream.Nitro.CommandLine.Settings;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System.CommandLine.Invocation;
using ChilliCream.Nitro.CommandLine.Client;
using ChilliCream.Nitro.CommandLine.Configuration;
using ChilliCream.Nitro.CommandLine.Helpers;
using ChilliCream.Nitro.CommandLine.Options;
using ChilliCream.Nitro.CommandLine.Results;
using ChilliCream.Nitro.CommandLine.Services.Configuration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System.CommandLine.Invocation;
using ChilliCream.Nitro.CommandLine.Client;
using ChilliCream.Nitro.CommandLine.Configuration;
using ChilliCream.Nitro.CommandLine.Helpers;
using ChilliCream.Nitro.CommandLine.Options;
using ChilliCream.Nitro.CommandLine.Services.Sessions;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System.CommandLine.Invocation;
using ChilliCream.Nitro.CommandLine.Client;
using ChilliCream.Nitro.CommandLine.Configuration;
using ChilliCream.Nitro.CommandLine.Helpers;
using ChilliCream.Nitro.CommandLine.Options;
using ChilliCream.Nitro.CommandLine.Services.Sessions;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using ChilliCream.Nitro.CommandLine.Client;
using ChilliCream.Nitro.CommandLine.Commands.Workspaces;
using ChilliCream.Nitro.CommandLine.Configuration;
using ChilliCream.Nitro.CommandLine.Helpers;
using ChilliCream.Nitro.CommandLine.Options;
using ChilliCream.Nitro.CommandLine.Services.Sessions;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using ChilliCream.Nitro.CommandLine.Client;
using ChilliCream.Nitro.CommandLine.Configuration;
using ChilliCream.Nitro.CommandLine.Helpers;
using ChilliCream.Nitro.CommandLine.Services.Sessions;

namespace ChilliCream.Nitro.CommandLine.Commands.Logout;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using ChilliCream.Nitro.CommandLine.Client;
using ChilliCream.Nitro.CommandLine.Configuration;
using ChilliCream.Nitro.CommandLine.Helpers;
using ChilliCream.Nitro.CommandLine.Options;

namespace ChilliCream.Nitro.CommandLine.Commands.Schemas;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System.CommandLine.Builder;
using System.CommandLine.Invocation;
using ChilliCream.Nitro.CommandLine.Helpers;

namespace ChilliCream.Nitro.CommandLine;

Expand Down
Loading
Loading