Files
SharpIDE/src/SharpIDE.Photino/Pages/Home.razor
2025-07-31 18:29:03 +10:00

14 lines
365 B
Plaintext

@page "/"
@using SharpIDE.Application.Features.SolutionDiscovery
<CodeViewer FilePath="C:\Users\matth\Documents\Git\SharpIDE.Photino\src\SharpIDE.Photino\Program.cs" />
@code
{
protected override async Task OnInitializedAsync()
{
await Task.Delay(100);
await RoslynTest.Analyse("C:/Users/matth/Documents/Git/SharpIDE.Photino/SharpIDE.Photino.sln");
}
}