Solution.Parser 2.0.1

This package has a SemVer 2.0.0 package version: 2.0.1+3.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Solution.Parser --version 2.0.1
NuGet\Install-Package Solution.Parser -Version 2.0.1
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="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Solution.Parser --version 2.0.1
#r "nuget: Solution.Parser, 2.0.1"
#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.
// Install Solution.Parser as a Cake Addin
#addin nuget:?package=Solution.Parser&version=2.0.1

// Install Solution.Parser as a Cake Tool
#tool nuget:?package=Solution.Parser&version=2.0.1

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 Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
2.0.5 108 4/20/2024
2.0.4 1,070 3/5/2024
2.0.3 2,327 1/22/2024
2.0.2 46 1/22/2024
2.0.1 398 1/16/2024
2.0.0 904 11/28/2023
0.2.0 436 11/28/2023
0.2.0-alpha.45 382 10/14/2023
0.2.0-alpha.44 73 9/12/2023
0.2.0-alpha.43 1,658 8/28/2023
0.2.0-alpha.42 84 8/27/2023
0.2.0-alpha.41 84 8/27/2023
0.2.0-alpha.38 1,373 7/25/2023
0.2.0-alpha.37 426 6/30/2023
0.2.0-alpha.34 4,857 3/16/2023
0.2.0-alpha.31 724 2/5/2023
0.2.0-alpha.30 2,361 1/2/2023
0.2.0-alpha.29 105 1/1/2023
0.2.0-alpha.27 92 1/1/2023
0.2.0-alpha.25 102 1/1/2023
0.1.0-alpha.24 94 12/27/2022
0.1.0-alpha.23 371 12/12/2022
0.1.0-alpha.22 91 12/12/2022
0.1.0-alpha.21 5,008 9/15/2022
0.1.0-alpha.19 186 9/14/2022
0.1.0-alpha.16 2,478 6/7/2022
0.1.0-alpha.15 112 6/7/2022
0.1.0-alpha.14 114 6/7/2022
0.1.0-alpha.13 331 4/25/2022
0.1.0-alpha.12 111 4/22/2022
0.1.0-alpha.11 131 4/16/2022

Fix modifier detection on class and records. Partial keyword was missing.