Skip to content

Commit

Permalink
Public release of the MvsSln 2.3
Browse files Browse the repository at this point in the history
* FIXED: Added support of `.` character in solution/project configuration name.
         Issue #13.
         ~
        ```
         {Guid}.Debug.x64.x86|Any.CPU.etc.Build.0 = Debug.x64.x86|Any.CPU.etc
                \___________/ \_________/ \_____/ ^ \___________/ \_________/
        ```

* FIXED: [Broken in 2.2] Processing solution breaks when solution contains
         some unsupported/unknown project type. Issue #14. (Thanks @wouterroos).

* NEW: An `Deploy` flag support. PR #16 (Thanks @wouterroos).

       +IConfPlatformPrj.IncludeInDeploy

* NEW: Added new the following project types below. PR #15 (Thanks @wouterroos).

       +ProjectType.Deploy
       +ProjectType.Sf

* CHANGED: Updated package's tool hMSBuild 2.1

           Release notes:
           https://github.com/3F/hMSBuild/releases/tag/v2.1
  • Loading branch information
3F committed Jun 17, 2019
1 parent efddf22 commit be6418a
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.0
2.3.0
2 changes: 1 addition & 1 deletion MvsSln/MvsSlnVersion.cs
Original file line number Diff line number Diff line change
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.2.0";
public const string S_NUM = "2.3.0";
public const string S_REV = "0";

public const string S_NUM_REV = S_NUM + "." + S_REV;
Expand Down
27 changes: 27 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@
MvsSln :: https://github.com/3F/MvsSln
_ _ _ _

[v2.3] 2019.06.17

* FIXED: Added support of `.` character in solution/project configuration name.
Issue #13.
~
```
{Guid}.Debug.x64.x86|Any.CPU.etc.Build.0 = Debug.x64.x86|Any.CPU.etc
\___________/ \_________/ \_____/ ^ \___________/ \_________/
```

* FIXED: [Broken in 2.2] Processing solution breaks when solution contains
some unsupported/unknown project type. Issue #14. (Thanks @wouterroos).

* NEW: An `Deploy` flag support. PR #16 (Thanks @wouterroos).

+IConfPlatformPrj.IncludeInDeploy

* NEW: Added new the following project types below. PR #15 (Thanks @wouterroos).

+ProjectType.Deploy
+ProjectType.Sf

* CHANGED: Updated package's tool hMSBuild 2.1

Release notes:
https://github.com/3F/hMSBuild/releases/tag/v2.1

[v2.2] 2019.04.08

* FIXED: Fixed possible error when loading all found projects:
Expand Down
4 changes: 2 additions & 2 deletions tools/MvsSln.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>MvsSln</id>
<version>2.2.0</version>
<version>2.3.0</version>
<title>[ MvsSln ] VisualStudio .sln files and its projects</title>
<authors>github.com/3F/MvsSln</authors>
<license type="file">License.txt</license>
Expand All @@ -28,7 +28,7 @@
~~~~~~~~
Get it via GetNuTool:
==========================================
gnt /p:ngpackages="MvsSln/2.2.0"
gnt /p:ngpackages="MvsSln/2.3.0"
==========================================
* https://github.com/3F/GetNuTool

Expand Down

2 comments on commit be6418a

@wouterroos
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just installed and verified this version in my solution and everything seems to work great.

@3F
Copy link
Owner Author

@3F 3F commented on be6418a Jun 17, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@wouterroos I'm glad to hear this :) Thanks for the feedback!

Please sign in to comment.