Add Application classlib

This commit is contained in:
Matt Parker [SSW]
2025-01-10 18:58:24 +10:00
parent 00d8c105e8
commit b9e617ed75
6 changed files with 41 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
namespace SharpIDE.Application.Features.SolutionDiscovery;
public class GetNodesInSolution
{
}

View File

@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build" Version="17.12.6" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.Build.Locator" Version="1.7.8" />
<PackageReference Include="NuGet.Protocol" Version="6.12.1" />
</ItemGroup>
</Project>