-
-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
targets mode issue #35
Comments
Thanks for report, I think this problem was solved at the same time with #34 Can you check latest binaries ? see build-175: https://ci.appveyor.com/project/3Fs/vssolutionbuildevent/build/build-175/artifacts For details: in #34 I also changed block with ErrorListProvider (Error List VS pane), because I saw strange deadlock for NLog. |
indeed that seems to fix the issue. |
3F
referenced
this issue
Nov 11, 2016
* 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.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using the Targets Mode to start a powershell script that does the stuff i want (copying config files around, stopping (prebuild) and starting (postbuild) services.
.targets lookse like:
The powershell scripts only use standard Powershell cmdlets (Write-Output, Copy-Item, Stop-Service and Start-Service)
This used to work very well with vssbe 0.12.7 but with 0.12.9 this seemed to stop working.
The scripts get executed as expected but it looks like after the postbuild target has run, visual studio waits for some output of vssbe as visual studio is completely unresponsive.
The text was updated successfully, but these errors were encountered: