-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* FIXED: Fixed CalculateHashCode() Extension. Internally affects many objects due to broken GetHashCode(). * FIXED: Fixed SlnItems.ProjectDependenciesXml when empty input: Report #25 (comment) * NEW: packages.config support PR #30. Related issues #27, #28. To activate it, use the following flags: * PackagesConfig, PackagesConfigSolution, PackagesConfigLegacy. For example, ``` using Sln l = new("Input.sln", SlnItems.AllNoLoad | SlnItems.PackagesConfig); IPackageInfo found = l.Result.PackagesConfigs .SelectMany(s => s.Packages) .FirstOrDefault(p => p.Id.StartsWith("Microsoft.")); // found.MetaTFM ... Version v = l.Result.PackagesConfigs.First().GetPackage("LX4Cnh")?.VersionParsed; ``` Including GetNuTool compatible packages, format: https://github.com/3F/GetNuTool#format-of-packages-list * NEW: Added HasValue and HasNothing properties in PropertyItem. * NEW: Added SlnItems.AllMinimal and SlnItems.AllNoLoad in addition to SlnItems.All. * NEW: Added IXProject.GetPackageReferences(). * CHANGED: ConfigItem.Format() marked as obsolete. Use `ToString()` and `IConfPlatform.Formatted` instead.
- Loading branch information
Showing
5 changed files
with
52 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.5.3 | ||
2.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters