-
-
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 parallelism problems when using Sln wrapper. * FIXED: Incorrect initialization for ProjectReferences class. * NEW: Added .net core based target platforms: netcoreapp2.1. + netstandard2.0. Issue #11. * NEW: Added netfx based target platforms: net472. PR #21. * NEW: IXProject methods: ``` +bool AddPackageReference(string id, string version, IEnumerable<KeyValuePair<string, string>> meta = null); +Item GetFirstPackageReference(string id); +bool RemovePackageReference(string id); ``` * CHANGED: EnvDTE features are obsolete now. Scheduled for removal in future major releases. Issue #22. * CHANGED: MathExtension.CalculateHashCode now encapsulates GetHashCode() with null checking. * CHANGED: Compatible signature changes for the following extension method: ``` AddOrUpdate(this IDictionary<string, string> source, IEnumerable<KeyValuePair<string, string>> items) ``` * KNOWN: Various [ possible ] problems when using modern MSBuild assemblies. ! Solution and details in our wiki: https://github.com/3F/MvsSln/wiki/Advanced-Features Do not hesitate to contact: https://github.com/3F/MvsSln/issues * NOTE: Discuss the planned v3.0 and its major changes: https://github.com/3F/MvsSln/milestone/4
- Loading branch information
Showing
5 changed files
with
40 additions
and
4 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.4.0 | ||
2.5.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