Skip to content

Commit

Permalink
MvsSln 2.6.1. Public release.
Browse files Browse the repository at this point in the history
* FIXED: Incorrect project instances for the active solution configuration in XProject Environment.
         Related issue: 3F/vsSolutionBuildEvent#71

* FIXED: Fixed possible 'The path is not of a legal form.' when instantiating ProjectItem.

* NEW: Added .IsVc() extension method for ProjectItem objects.

* CHANGED: Updated logic for .IsSdk() extension method.
           Now it will use information from ProjectType when null or empty ProjectItem.fullPath.
           Otherwise, same logic from v2.5.3 described here: https://github.com/3F/MvsSln/blob/0ec96021b7/MvsSln/Extensions/ProjectItemExtension.cs#L59-L77
  • Loading branch information
3F committed Jan 31, 2022
1 parent 0ec9602 commit 8dd3956
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .version
@@ -1 +1 @@
2.6.0
2.6.1
9 changes: 6 additions & 3 deletions 3rd-party.txt
@@ -1,5 +1,6 @@
MvsSln [ https://github.com/3F/MvsSln ]
- - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - -
MvsSln - https://github.com/3F/MvsSln
- - - - - - - - - - - - - - - - - - -

# Third-party software components

Expand Down Expand Up @@ -30,4 +31,6 @@ MvsSln [ https://github.com/3F/MvsSln ]

* GetNuTool
https://github.com/3F/GetNuTool


* netfx4sdk
https://github.com/3F/netfx4sdk
2 changes: 1 addition & 1 deletion MvsSln/MvsSln.csproj
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\common.props" />

<PropertyGroup>
<Version>2.6.0</Version>
<Version>2.6.1</Version>
<BuildInfoVSSBE></BuildInfoVSSBE>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion MvsSln/MvsSlnVersion.cs
Expand Up @@ -8,7 +8,7 @@ public struct MvsSlnVersion
{
public static readonly Version number = new Version(S_NUM_REV);

public const string S_NUM = "2.6.0";
public const string S_NUM = "2.6.1";
public const string S_REV = "0";

public const string S_NUM_REV = S_NUM + "." + S_REV;
Expand Down
14 changes: 14 additions & 0 deletions changelog.txt
Expand Up @@ -2,6 +2,20 @@
MvsSln - https://github.com/3F/MvsSln
- - - - - - - - - - - - - - - - - - -

[v2.6.1] 2022.02.01

* FIXED: Incorrect project instances for the active solution configuration in XProject Environment.
Related issue: https://github.com/3F/vsSolutionBuildEvent/issues/71

* FIXED: Fixed possible 'The path is not of a legal form.' when instantiating ProjectItem.

* NEW: Added .IsVc() extension method for ProjectItem objects.

* CHANGED: Updated logic for .IsSdk() extension method.
Now it will use information from ProjectType when null or empty ProjectItem.fullPath.
Otherwise, same logic from v2.5.3 described here: https://github.com/3F/MvsSln/blob/0ec96021b7/MvsSln/Extensions/ProjectItemExtension.cs#L59-L77


[v2.6] 2021.08.23

* FIXED: Fixed CalculateHashCode() Extension.
Expand Down

0 comments on commit 8dd3956

Please sign in to comment.