Skip to content

Commit 16ee135

Browse files
committed
Public release of vsSolutionBuildEvent 1.14
* NEW: Integration with MvsSln project. v2.4 PR #53. Replaces processing from IsolatedEnv/MSBuild/+ and fully removes our old parser. Finally it fixes lot of bugs (such as: #42, #41, #40,..) and also improves performance. https://github.com/3F/MvsSln * NEW: Open Source independent script engines under the MIT License. Issue #55. * NEW: Integration with E-MSBuild project. v1.14. Part of PR #56. Advanced Evaluator of MSBuild scripts with user-variables support through Varhead and more. https://github.com/3F/E-MSBuild * NEW: Integration with SobaScript -- an Extensible Modular Scripting Programming Language. Part of PR #56. https://github.com/3F/SobaScript * NEW: Included SobaScript Components: Z.Core: https://github.com/3F/SobaScript.Z.Core * ConditionComponent * EvMSBuildComponent * UserVariableComponent * TryComponent * CommentComponent * BoxComponent Z.Ext: https://github.com/3F/SobaScript.Z.Ext * SevenZipComponent * NuGetComponent * FileComponent * FunctionComponent Z.VS: https://github.com/3F/SobaScript.Z.VS * DTEComponent * OwpComponent * BuildComponent * FIXED: Possible "Can not load 7-zip library or internal COM error" When using x64 instance. Issue #38. * FIXED: Possible "An equivalent project is already present in the project collection." Issue #42. * FIXED: Possible incorrect projects for MSBuild Properties ~ $(TargetFrameworkVersion:Metadata) Issue #41. * FIXED: Failed getting project from EnvDTE. Issue #40. * CHANGED: Increased performance when evaluating data and scripts. * CHANGED: Updated 7z.Libs 19.0.1. * CHANGED: Updated AvalonEdit 5.0.4 * CHANGED: Updated Microsoft.VisualStudio.Shell.15.0 15.9.28307 * CHANGED: SDK15 packages only: Updated Microsoft.Build & Microsoft.Build.Framework 16.0.461 * CHANGED: Updated EnvDTE 8.0.2 * CHANGED: Updated EnvDTE80 8.0.3 * CHANGED: Updated Newtonsoft.Json 12.0.2 * CHANGED: Updated Microsoft.VisualStudio.SDK.EmbedInteropTypes 15.0.27 * CHANGED: StreamJsonRpc 2.0.208 * CHANGED: System.ValueTuple 4.5.0 * CHANGED: NuGet package `vsSBE.CI.MSBuild` is obsolete. Please use new: https://www.nuget.org/packages/vsSolutionBuildEvent Also new 'tools\' folder instead of 'bin\'. * KNOWN: Possible Failed Project.Pre/Post-binding: 'Object reference not set to an instance of an object.' Issue #43. Please enable debug mode, we're waiting for your reports. * KNOWN: Known problem for VS2019. Build can be started before activation of our plugin. This is a feature of the modern VS platform with lazy loading of all plugins. Solution: Just attach once our [status panel] and this will always activate our plugin before start. * KNOWN: Known problem when deactivated [Status Panel] from `View` - `Other Windows`. Incorrect identifier in previous version produces wrong tool. Solution: Just close this panel. Then, open it again from `View` - `Other Windows`. * NOTE: Please note. New releases has been migrated from SourceForge to GitHub Release Page: https://github.com/3F/vsSolutionBuildEvent/releases https://vssbe.r-eg.net/Downloads/ * NOTE: Here is about SDK10 / SDK15 packages: https://vssbe.r-eg.net/doc/Usage/#sdk10--sdk15-versions
1 parent 5b4db44 commit 16ee135

5 files changed

Lines changed: 117 additions & 3 deletions

File tree

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.11
1+
1.14.0

CI.MSBuild/changelog.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
vsSolutionBuildEvent CI.MSBuild
22
_______________________________
33

4+
[1.7] 2019.09.26
5+
6+
* NEW: Integration with MvsSln project. v2.4 PR #53.
7+
Replaces processing from IsolatedEnv/MSBuild/+ and fully removes our old parser.
8+
Finally it fixes lot of bugs (such as: #42, #41, #40,..) and also improves performance.
9+
https://github.com/3F/MvsSln
10+
11+
* FIXED: Possible "An equivalent project is already present in the project collection."
12+
Issue #42.
13+
14+
* FIXED: Possible incorrect projects for MSBuild Properties
15+
~ $(TargetFrameworkVersion:Metadata) Issue #41.
16+
17+
* FIXED: Possible "Can not load 7-zip library or internal COM error"
18+
When using x64 instance. Issue #38.
19+
20+
* CHANGED: Updated 7z.Libs 19.0.1.
21+
422
[v1.6] 2016.02.04
523

624
* FIXED: bug for Pre/Post-project event type ~ `"PreBuildEvent" skipped, due to false condition; ('$(PreBuildEvent)'!='')`.

changelog.txt

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,102 @@
11
vsSolutionBuildEvent - https://github.com/3F/vsSolutionBuildEvent
22
_ _ _ _ _ _ _ _ _ _
33

4+
[1.14] 2019.09.26
5+
6+
* NEW: Integration with MvsSln project. v2.4 PR #53.
7+
Replaces processing from IsolatedEnv/MSBuild/+ and fully removes our old parser.
8+
Finally it fixes lot of bugs (such as: #42, #41, #40,..) and also improves performance.
9+
https://github.com/3F/MvsSln
10+
11+
* NEW: Open Source independent script engines under the MIT License. Issue #55.
12+
13+
* NEW: Integration with E-MSBuild project. v1.14. Part of PR #56.
14+
Advanced Evaluator of MSBuild scripts with user-variables support through Varhead and more.
15+
https://github.com/3F/E-MSBuild
16+
17+
* NEW: Integration with SobaScript -- an Extensible Modular Scripting Programming Language.
18+
Part of PR #56.
19+
https://github.com/3F/SobaScript
20+
21+
* NEW: Included SobaScript Components:
22+
Z.Core: https://github.com/3F/SobaScript.Z.Core
23+
* ConditionComponent
24+
* EvMSBuildComponent
25+
* UserVariableComponent
26+
* TryComponent
27+
* CommentComponent
28+
* BoxComponent
29+
30+
Z.Ext: https://github.com/3F/SobaScript.Z.Ext
31+
* SevenZipComponent
32+
* NuGetComponent
33+
* FileComponent
34+
* FunctionComponent
35+
36+
Z.VS: https://github.com/3F/SobaScript.Z.VS
37+
* DTEComponent
38+
* OwpComponent
39+
* BuildComponent
40+
41+
* FIXED: Possible "Can not load 7-zip library or internal COM error"
42+
When using x64 instance. Issue #38.
43+
44+
* FIXED: Possible "An equivalent project is already present in the project collection."
45+
Issue #42.
46+
47+
* FIXED: Possible incorrect projects for MSBuild Properties
48+
~ $(TargetFrameworkVersion:Metadata) Issue #41.
49+
50+
* FIXED: Failed getting project from EnvDTE. Issue #40.
51+
52+
* CHANGED: Increased performance when evaluating data and scripts.
53+
54+
* CHANGED: Updated 7z.Libs 19.0.1.
55+
56+
* CHANGED: Updated AvalonEdit 5.0.4
57+
58+
* CHANGED: Updated Microsoft.VisualStudio.Shell.15.0 15.9.28307
59+
60+
* CHANGED: SDK15 packages only:
61+
Updated Microsoft.Build & Microsoft.Build.Framework 16.0.461
62+
63+
* CHANGED: Updated EnvDTE 8.0.2
64+
65+
* CHANGED: Updated EnvDTE80 8.0.3
66+
67+
* CHANGED: Updated Newtonsoft.Json 12.0.2
68+
69+
* CHANGED: Updated Microsoft.VisualStudio.SDK.EmbedInteropTypes 15.0.27
70+
71+
* CHANGED: StreamJsonRpc 2.0.208
72+
73+
* CHANGED: System.ValueTuple 4.5.0
74+
75+
* CHANGED: NuGet package `vsSBE.CI.MSBuild` is obsolete. Please use new:
76+
https://www.nuget.org/packages/vsSolutionBuildEvent
77+
Also new 'tools\' folder instead of 'bin\'.
78+
79+
* KNOWN: Possible Failed Project.Pre/Post-binding: 'Object reference not set to an instance of an object.'
80+
Issue #43.
81+
Please enable debug mode, we're waiting for your reports.
82+
83+
* KNOWN: Known problem for VS2019. Build can be started before activation of our plugin.
84+
This is a feature of the modern VS platform with lazy loading of all plugins.
85+
Solution:
86+
Just attach once our [status panel] and this will always activate our plugin before start.
87+
88+
* KNOWN: Known problem when deactivated [Status Panel] from `View` - `Other Windows`.
89+
Incorrect identifier in previous version produces wrong tool.
90+
Solution:
91+
Just close this panel. Then, open it again from `View` - `Other Windows`.
92+
93+
* NOTE: Please note. New releases has been migrated from SourceForge to GitHub Release Page:
94+
https://github.com/3F/vsSolutionBuildEvent/releases
95+
https://vssbe.r-eg.net/Downloads/
96+
97+
* NOTE: Here is about SDK10 / SDK15 packages:
98+
https://vssbe.r-eg.net/doc/Usage/#sdk10--sdk15-versions
99+
4100

5101
[v0.12.11] 2019.06.30
6102

vsSolutionBuildEvent/sdk10.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Identifier Id="94ecd13f-15f3-4f51-9afd-17f0275c6266">
55
<Name>vsSolutionBuildEvent</Name>
66
<Author>GitHub3F</Author>
7-
<Version>0.12.11</Version>
7+
<Version>1.14.0</Version>
88
<Description xml:space="preserve">Event-Catcher with variety of advanced Actions to service projects, libraries, the build processes and processes at runtime from VisualStudio and MSBuild Tools.</Description>
99
<Locale>1033</Locale>
1010
<MoreInfoUrl>https://github.com/3F/vsSolutionBuildEvent</MoreInfoUrl>

vsSolutionBuildEvent/sdk15.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<!-- Do not use '..\' for paths because of problems when uninstalling -->
44
<Metadata>
5-
<Identity Id="94ecd13f-15f3-4f51-9afd-17f0275c6266" Version="0.12.11" Language="en-US" Publisher="GitHub3F" />
5+
<Identity Id="94ecd13f-15f3-4f51-9afd-17f0275c6266" Version="1.14.0" Language="en-US" Publisher="GitHub3F" />
66
<DisplayName>vsSolutionBuildEvent</DisplayName>
77
<Description xml:space="preserve">Event-Catcher with variety of advanced Actions to service projects, libraries, the build processes and processes at runtime from VisualStudio and MSBuild Tools.</Description>
88
<MoreInfo>https://github.com/3F/vsSolutionBuildEvent</MoreInfo>

0 commit comments

Comments
 (0)