Skip to content

Commit

Permalink
public release vsSolutionBuildEvent v0.12.10
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
3F committed Nov 11, 2016
1 parent f826905 commit d37fe51
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.9
0.12.10
36 changes: 36 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,42 @@
vsSolutionBuildEvent
_ _ _ _ _ _ _ _ _ _

[v0.12.10] 2016.11.11

* 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.

[v0.12.9] 2016.09.14

* FIXED: Critical bug with WPF designer of VS IDE. Error 25012 - process terminated unexpectedly.
Expand Down
2 changes: 1 addition & 1 deletion vsSBE.CI.MSBuild.nuspec.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

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

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

Expand Down
2 changes: 1 addition & 1 deletion vsSolutionBuildEvent/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Identifier Id="94ecd13f-15f3-4f51-9afd-17f0275c6266">
<Name>vsSolutionBuildEvent</Name>
<Author>github.com/3F</Author>
<Version>0.12.9</Version>
<Version>0.12.10</Version>
<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>
<Locale>1033</Locale>
<MoreInfoUrl>http://visualstudiogallery.msdn.microsoft.com/0d1dbfd7-ed8a-40af-ae39-281bfeca2334/</MoreInfoUrl>
Expand Down

1 comment on commit d37fe51

@3F
Copy link
Owner Author

@3F 3F commented on d37fe51 Nov 11, 2016

Choose a reason for hiding this comment

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

+ * FIXED: Possible deadlock from any output messages. Related Issue #35 - 'targets mode issue'

Please sign in to comment.