mirror of https://github.com/dotnet/tye.git
committed by
GitHub
62 changed files with 83 additions and 78 deletions
@ -1,7 +1,7 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using Microsoft.Extensions.Logging; |
|||
|
|||
namespace Micronetes.Hosting.Diagnostics |
|||
namespace Tye.Hosting.Diagnostics |
|||
{ |
|||
public class DiagnosticOptions |
|||
{ |
|||
@ -1,4 +1,4 @@ |
|||
<Router AppAssembly="@typeof(MicronetesHost).Assembly"> |
|||
<Router AppAssembly="@typeof(TyeHost).Assembly"> |
|||
<Found Context="routeData"> |
|||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" /> |
|||
</Found> |
|||
@ -1,5 +1,5 @@ |
|||
@page "/" |
|||
@namespace Micronetes.Hosting.Dashboard.Pages |
|||
@namespace Tye.Hosting.Dashboard.Pages |
|||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers |
|||
@{ |
|||
Layout = null; |
|||
@ -1,7 +1,7 @@ |
|||
using System.Threading.Tasks; |
|||
using Micronetes.Hosting.Model; |
|||
using Tye.Hosting.Model; |
|||
|
|||
namespace Micronetes.Hosting |
|||
namespace Tye.Hosting |
|||
{ |
|||
public interface IApplicationProcessor |
|||
{ |
|||
@ -1,4 +1,4 @@ |
|||
namespace Micronetes.Hosting |
|||
namespace Tye.Hosting |
|||
{ |
|||
internal class ProcessResult |
|||
{ |
|||
@ -1,4 +1,4 @@ |
|||
namespace Micronetes.Hosting.Model |
|||
namespace Tye.Hosting.Model |
|||
{ |
|||
public class DockerRunInfo : RunInfo |
|||
{ |
|||
@ -1,4 +1,4 @@ |
|||
namespace Micronetes.Hosting.Model |
|||
namespace Tye.Hosting.Model |
|||
{ |
|||
public class ExecutableRunInfo : RunInfo |
|||
{ |
|||
@ -1,4 +1,4 @@ |
|||
namespace Micronetes.Hosting.Model |
|||
namespace Tye.Hosting.Model |
|||
{ |
|||
public class ProjectRunInfo : RunInfo |
|||
{ |
|||
@ -1,4 +1,4 @@ |
|||
namespace Micronetes.Hosting.Model |
|||
namespace Tye.Hosting.Model |
|||
{ |
|||
public abstract class RunInfo |
|||
{ |
|||
@ -1,4 +1,4 @@ |
|||
namespace Micronetes.Hosting.Model |
|||
namespace Tye.Hosting.Model |
|||
{ |
|||
public class ServiceBinding |
|||
{ |
|||
@ -1,6 +1,6 @@ |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Micronetes.Hosting.Model |
|||
namespace Tye.Hosting.Model |
|||
{ |
|||
public class ServiceDescription |
|||
{ |
|||
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
@ -0,0 +1,8 @@ |
|||
{ |
|||
"profiles": { |
|||
"tye": { |
|||
"commandName": "Project", |
|||
"commandLineArgs": "run C:\\Users\\jukotali\\code\\tye\\samples\\multi-project\\tye.yaml" |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue