Skip to content

Commit d37fe51

Browse files
committed
public release vsSolutionBuildEvent v0.12.10
* FIXED: Fixed bug - `BAT files no longer dumps to VS Output window "vsSolutionBuildEvent"` Bug #34 * FIXED: Fixed problem with white-space chars in Files & Interpreter Mode. Message: `'...' is not recognized as an internal or external command, operable program or batch file.` * FIXED: Added messages about errors for actions in another thread when this failed. * NEW: SBE-Scripts. [MSBuildComponent] Added multiline support for MSBuild expressions: ``` #[$( [System.Math]::Exp('$( [MSBuild]::Multiply( $([System.Math]::Log(10)), 4 ))' ) )] ``` See the documentation. * NEW: SBE-Scripts. Implemented `boolean run([enum context])` To Execute Action with specific context. [InternalComponent] Now you can easy call any actions from other actions. ``` #[Core events.Pre.item("SpecBuild").run()] #[Core events.Post.item(5).run(Build)] ``` * NEW: Implemented - "The revision of modulo" (Wizard) * NEW: Added special types for `Execution order` - First / Last Project & Type For convenient work with deferred Pre-Build event /Related question - #37 * CHANGED: C# Mode: Error/Warn messages also for result of this action by compiler settings - `Warnings & Errors` - `TreatWarningsAsErrors` * CHANGED: Updated time format for main Log-messages: without date + added ten thousandths of a second (.0000 - .9999) * CHANGED: Updated 7-zip v16.04 & NLog 4.3.11 * CHANGED: Other trivial changes for UI. The commands to copy / clear etc.
1 parent f826905 commit d37fe51

4 files changed

Lines changed: 39 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.9
1+
0.12.10

changelog.txt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,42 @@
11
vsSolutionBuildEvent
22
_ _ _ _ _ _ _ _ _ _
33

4+
[v0.12.10] 2016.11.11
5+
6+
* FIXED: Fixed bug - `BAT files no longer dumps to VS Output window "vsSolutionBuildEvent"` Bug #34
7+
* FIXED: Fixed problem with white-space chars in Files & Interpreter Mode.
8+
Message: `'...' is not recognized as an internal or external command, operable program or batch file.`
9+
10+
* FIXED: Added messages about errors for actions in another thread when this failed.
11+
* NEW: SBE-Scripts. [MSBuildComponent] Added multiline support for MSBuild expressions:
12+
```
13+
#[$(
14+
[System.Math]::Exp('$(
15+
[MSBuild]::Multiply(
16+
$([System.Math]::Log(10)),
17+
4
18+
))'
19+
)
20+
)]
21+
```
22+
See the documentation.
23+
24+
* NEW: SBE-Scripts. Implemented `boolean run([enum context])` To Execute Action with specific context. [InternalComponent]
25+
Now you can easy call any actions from other actions.
26+
```
27+
#[Core events.Pre.item("SpecBuild").run()]
28+
#[Core events.Post.item(5).run(Build)]
29+
```
30+
31+
* NEW: Implemented - "The revision of modulo" (Wizard)
32+
* NEW: Added special types for `Execution order` - First / Last Project & Type
33+
For convenient work with deferred Pre-Build event /Related question - #37
34+
35+
* CHANGED: C# Mode: Error/Warn messages also for result of this action by compiler settings - `Warnings & Errors` - `TreatWarningsAsErrors`
36+
* CHANGED: Updated time format for main Log-messages: without date + added ten thousandths of a second (.0000 - .9999)
37+
* CHANGED: Updated 7-zip v16.04 & NLog 4.3.11
38+
* CHANGED: Other trivial changes for UI. The commands to copy / clear etc.
39+
440
[v0.12.9] 2016.09.14
541

642
* FIXED: Critical bug with WPF designer of VS IDE. Error 25012 - process terminated unexpectedly.

vsSBE.CI.MSBuild.nuspec.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
Official package of libraries for support of the CI /Build Servers.
1616

17-
* ! Documentation: http://vssbe.r-eg.net -> vssbe.r-eg.net/doc/CI/CI.MSBuild/
17+
* ! Documentation: http://vssbe.r-eg.net
1818
* VS Gallery Page: https://visualstudiogallery.msdn.microsoft.com/0d1dbfd7-ed8a-40af-ae39-281bfeca2334/
1919
* Source code & Public Bug Tracker: https://github.com/3F/vsSolutionBuildEvent
2020

vsSolutionBuildEvent/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Identifier Id="94ecd13f-15f3-4f51-9afd-17f0275c6266">
44
<Name>vsSolutionBuildEvent</Name>
55
<Author>github.com/3F</Author>
6-
<Version>0.12.9</Version>
6+
<Version>0.12.10</Version>
77
<Description xml:space="preserve">Event-Catcher with variety of advanced Actions for service of your projects and libraries, the build processes and processes at runtime from Visual Studio and MSBuild Tools. Flexible actions for all..</Description>
88
<Locale>1033</Locale>
99
<MoreInfoUrl>http://visualstudiogallery.msdn.microsoft.com/0d1dbfd7-ed8a-40af-ae39-281bfeca2334/</MoreInfoUrl>

0 commit comments

Comments
 (0)