Bump packages

This commit is contained in:
Matt Parker
2025-07-31 18:29:03 +10:00
parent 19c7893b78
commit 1dca2d19fd
6 changed files with 18 additions and 18 deletions

View File

@@ -7,10 +7,10 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build" Version="17.12.6" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.Build.Locator" Version="1.7.8" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.12.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.12.0" />
<PackageReference Include="NuGet.Protocol" Version="6.12.1" />
<PackageReference Include="Microsoft.Build" Version="17.14.8" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.Build.Locator" Version="1.9.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.14.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.14.0" />
<PackageReference Include="NuGet.Protocol" Version="6.14.0" />
</ItemGroup>
</Project>

View File

@@ -53,13 +53,13 @@
protected override async Task OnInitializedAsync()
{
await Task.Run(() => LoadSolution("C:/Users/Matthew/Documents/Git/amazon/ClientPortal.sln"));
await Task.Run(() => LoadSolution("C:/Users/matth/Documents/Git/SharpIDE.Photino/SharpIDE.Photino.sln"));
}
private void LoadSolution(string solutionPath)
{
return;
var solutionFile = GetNodesInSolution.ParseSolutionFileFromPath("C:/Users/Matthew/Documents/Git/amazon/ClientPortal.sln");
var solutionFile = GetNodesInSolution.ParseSolutionFileFromPath(solutionPath);
ArgumentNullException.ThrowIfNull(solutionFile);
_solutionFile = solutionFile;
var rootNodes = solutionFile.ProjectsByGuid.Values.Where(p => p.ParentProjectGuid == null).OrderBy(s => s.ProjectName).ToList();

View File

@@ -1,13 +1,13 @@
@page "/"
@using SharpIDE.Application.Features.SolutionDiscovery
<CodeViewer FilePath="C:\Users\Matthew\Documents\Git\amazon\src\Utilities\ClientPortal.Utilities.DebugConsole\DataversePlayground.cs" />
<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/Matthew/Documents/Git/amazon/ClientPortal.sln");
await RoslynTest.Analyse("C:/Users/matth/Documents/Git/SharpIDE.Photino/SharpIDE.Photino.sln");
}
}

View File

@@ -18,10 +18,10 @@
<ItemGroup>
<PackageReference Include="BlazorMonaco" Version="3.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView" Version="9.0.0" />
<PackageReference Include="MudBlazor" Version="8.0.0-rc.2" />
<PackageReference Include="Photino.Blazor" Version="3.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView" Version="9.0.7" />
<PackageReference Include="MudBlazor" Version="8.10.0" />
<PackageReference Include="Photino.Blazor" Version="4.0.13" />
</ItemGroup>
<ItemGroup>