Solution.Parser
3.0.1
This package has a SemVer 2.0.0 package version: 3.0.1+1.
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 3.0.1
NuGet\Install-Package Solution.Parser -Version 3.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="3.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Solution.Parser --version 3.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Solution.Parser, 3.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=3.0.1 // Install Solution.Parser as a Cake Tool #tool nuget:?package=Solution.Parser&version=3.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Solution Parser
Sample
[TestClass]
public abstract class MsTestBase
{
protected static IImmutableList<CSharpSyntaxTree> TestCode { get; private set; } = ImmutableList<CSharpSyntaxTree>.Empty;
protected static IImmutableList<CSharpSyntaxTree> AllSyntaxTrees { get; private set; } = ImmutableList<CSharpSyntaxTree>.Empty;
protected static IImmutableList<CSharpSyntaxTree> ProductiveCode { get; private set; } = ImmutableList<CSharpSyntaxTree>.Empty;
protected static IImmutableList<CSharpSyntaxTree> ProductiveCodeToAnaylze { get; private set; } = ImmutableList<CSharpSyntaxTree>.Empty;
protected static SolutionFile Solution { get; private set; } = null!;
[AssemblyInitialize]
public static void Init(TestContext _)
{
var sSolutionFileInfo = new SolutionFileName("MySolution.sln").FindSolutionFileReverseFrom(new DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory));
Throw.IfNull(sSolutionFileInfo);
Solution = sSolutionFileInfo.Parse();
ProductiveCode = Solution.ProductiveProjects.SelectMany(p => p.CSharpFileInfos)
.Select(c => c.Parse())
.ToImmutableList();
TestCode = Solution.UnitTestProjects.SelectMany(p => p.CSharpFileInfos)
.Select(c => c.Parse())
.ToImmutableList();
AllSyntaxTrees = ProductiveCode.Concat(TestCode).ToImmutableList();
}
}
CodeRule sample
[TestCategory("Coding-Rules")]
[TestCategory("Coding-Rules Records")]
[TestClass]
public class Records : MsTestBase // <-- MsTestBase is a base class that provides the ProductiveCode property
{
[TestMethod]
public void Record_Properties_Have_To_Be_Be_Immutable()
{
var mutableProperties = (from syntaxTree in ProductiveCode
from @record in syntaxTree.Records
from property in @record.Properties
where property.IsReadOnly.IsFalse()
select new
{
Error = $@"
Please do not use mutable properties
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
FullName: {@record.FullQualifiedName}
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Property: {property.Type} {property.Name}
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Should be: {property.Type} {{get; init;}}
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
"
}).ToImmutableList();
Assert.IsTrue(mutableProperties.IsEmpty(),
$"Properties must be immutable. Findings: '{mutableProperties.Count}':{Environment.NewLine}{mutableProperties.Select(error => error.Error).Flatten(Environment.NewLine)}{Environment.NewLine}");
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- Extensions.Pack (>= 6.0.3)
- FileSystem.Abstraction (>= 0.1.2)
- Microsoft.Build (>= 17.12.6)
- Microsoft.CodeAnalysis.CSharp (>= 4.12.0)
- NuGet.Configuration (>= 6.12.1)
- NuGet.Versioning (>= 6.12.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.2 | 2,295 | 2/4/2025 |
3.0.1 | 10,017 | 1/24/2025 |
3.0.0 | 11,560 | 11/20/2024 |
2.0.18 | 19,329 | 11/20/2024 |
2.0.17 | 7,278 | 10/17/2024 |
2.0.16 | 32,071 | 9/23/2024 |
2.0.15 | 3,740 | 9/6/2024 |
2.0.13 | 12,755 | 6/12/2024 |
2.0.12 | 3,317 | 5/26/2024 |
2.0.11 | 4,270 | 5/12/2024 |
2.0.10 | 3,273 | 5/12/2024 |
2.0.9 | 3,277 | 5/10/2024 |
2.0.8 | 3,274 | 5/9/2024 |
2.0.7 | 3,279 | 5/9/2024 |
2.0.6 | 3,255 | 5/9/2024 |
2.0.5 | 5,327 | 4/20/2024 |
2.0.4 | 4,605 | 3/5/2024 |
2.0.3 | 6,123 | 1/22/2024 |
2.0.2 | 3,281 | 1/22/2024 |
2.0.1 | 3,634 | 1/16/2024 |
2.0.0 | 4,167 | 11/28/2023 |
0.2.0 | 3,673 | 11/28/2023 |
0.2.0-alpha.45 | 409 | 10/14/2023 |
0.2.0-alpha.44 | 123 | 9/12/2023 |
0.2.0-alpha.43 | 1,682 | 8/28/2023 |
0.2.0-alpha.42 | 104 | 8/27/2023 |
0.2.0-alpha.41 | 101 | 8/27/2023 |
0.2.0-alpha.38 | 1,401 | 7/25/2023 |
0.2.0-alpha.37 | 448 | 6/30/2023 |
0.2.0-alpha.34 | 4,880 | 3/16/2023 |
0.2.0-alpha.31 | 756 | 2/5/2023 |
0.2.0-alpha.30 | 2,390 | 1/2/2023 |
0.2.0-alpha.29 | 133 | 1/1/2023 |
0.2.0-alpha.27 | 123 | 1/1/2023 |
0.2.0-alpha.25 | 132 | 1/1/2023 |
0.1.0-alpha.24 | 125 | 12/27/2022 |
0.1.0-alpha.23 | 402 | 12/12/2022 |
0.1.0-alpha.22 | 120 | 12/12/2022 |
0.1.0-alpha.21 | 5,044 | 9/15/2022 |
0.1.0-alpha.19 | 219 | 9/14/2022 |
0.1.0-alpha.16 | 2,504 | 6/7/2022 |
0.1.0-alpha.15 | 144 | 6/7/2022 |
0.1.0-alpha.14 | 145 | 6/7/2022 |
0.1.0-alpha.13 | 356 | 4/25/2022 |
0.1.0-alpha.12 | 135 | 4/22/2022 |
0.1.0-alpha.11 | 166 | 4/16/2022 |
Upgrade to .Net 9