diff --git a/src/SharpIDE.Photino/Components/RunPopover.razor b/src/SharpIDE.Photino/Components/RunPopover.razor new file mode 100644 index 0000000..487089c --- /dev/null +++ b/src/SharpIDE.Photino/Components/RunPopover.razor @@ -0,0 +1,25 @@ +@using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence + +
+ +
+ + @foreach(var projects in SolutionModel.AllProjects) + { + @projects.Name + } + +
+
+ + + + +
+ +@code { + [Parameter, EditorRequired] + public SharpIdeSolutionModel SolutionModel { get; set; } = null!; + + private bool _open = false; +} diff --git a/src/SharpIDE.Photino/Layout/MainLayout.razor b/src/SharpIDE.Photino/Layout/MainLayout.razor index 7beffd4..204f888 100644 --- a/src/SharpIDE.Photino/Layout/MainLayout.razor +++ b/src/SharpIDE.Photino/Layout/MainLayout.razor @@ -29,12 +29,10 @@ - - - +