Solution.Parser
0.2.0-alpha.45
This is a prerelease version of Solution.Parser.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Solution.Parser --version 0.2.0-alpha.45
NuGet\Install-Package Solution.Parser -Version 0.2.0-alpha.45
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Solution.Parser" Version="0.2.0-alpha.45" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Solution.Parser" Version="0.2.0-alpha.45" />
<PackageReference Include="Solution.Parser" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Solution.Parser --version 0.2.0-alpha.45
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Solution.Parser, 0.2.0-alpha.45"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Solution.Parser@0.2.0-alpha.45
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Solution.Parser&version=0.2.0-alpha.45&prerelease
#tool nuget:?package=Solution.Parser&version=0.2.0-alpha.45&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Solution Parser
Sample
[TestClass]
public class SolutionParseTest
{
private static SolutionFileInfo _sSolutionFileInfo = null!;
[ClassInitialize]
public static void ClassInit(TestContext _)
{
var solutionFile = new SolutionFileName("Solution.Parser.sln").FindSolutionFileReverseFrom(new DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory));
_sSolutionFileInfo = Throw.IfNull(solutionFile);
}
[TestMethod]
public void Assert_That_Solution_Could_Be_Parsed()
{
var tcSolutionFile = _sSolutionFileInfo.Parse();
Assert.IsNotNull(tcSolutionFile);
}
[TestMethod]
public void Assert_That_A_CSharp_File_Can_Be_Parsed()
{
var tcSolutionFile = _sSolutionFileInfo.Parse();
var csharpSyntaxTrees = tcSolutionFile.Projects.SelectMany(p => p.CSharpFileInfos).Select(c => c.Parse()).ToList();
Assert.IsTrue(csharpSyntaxTrees.Any());
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net7.0
- Argument.Check (>= 3.0.1)
- Extensions.Pack (>= 3.0.3)
- FileSystem.Abstraction (>= 0.1.2)
- Microsoft.Build (>= 17.6.3)
- Microsoft.CodeAnalysis.CSharp (>= 4.6.0)
- NuGet.Configuration (>= 6.6.1)
- NuGet.Versioning (>= 6.6.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3.0.8 | 3,615 | 1/9/2026 |
| 3.0.7 | 4,267 | 11/23/2025 |
| 3.0.6 | 229 | 11/21/2025 |
| 3.0.5 | 3,701 | 10/29/2025 |
| 3.0.4 | 43,244 | 9/8/2025 |
| 3.0.3 | 411 | 9/7/2025 |
| 3.0.2 | 14,622 | 2/4/2025 |
| 3.0.1 | 10,728 | 1/24/2025 |
| 3.0.0 | 12,241 | 11/20/2024 |
| 2.0.18 | 108,584 | 11/20/2024 |
| 2.0.17 | 11,833 | 10/17/2024 |
| 2.0.16 | 47,866 | 9/23/2024 |
| 2.0.15 | 4,427 | 9/6/2024 |
| 2.0.13 | 14,528 | 6/12/2024 |
| 2.0.12 | 4,013 | 5/26/2024 |
| 2.0.11 | 4,948 | 5/12/2024 |
| 2.0.10 | 3,942 | 5/12/2024 |
| 2.0.9 | 3,958 | 5/10/2024 |
| 2.0.8 | 3,943 | 5/9/2024 |
| 0.2.0-alpha.45 | 490 | 10/14/2023 |
Loading failed
Introduce API parsing