Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Post Build does not like my conditional

I have a post build conditional that looks like this:

if $(ConfigurationName)==Release
(
    echo Update $(TargetName) to be non conflicting
    "$(SolutionDir)ILMerge\RummageTypeRenamer.exe" -f XamlGeneratedNamespace.GeneratedInternalTypeHelper -t XamlGeneratedNamespace.GeneratedInternalTypeHelper$(TargetName) $(TargetName).dll
    del $(TargetName).dll
    ren $(TargetName).Runmage.dll $(TargetName).dll
)

This runs fine if I take off the condition and the parens. But if I run it as is, I get the error:

The syntax of the command is incorrect.

The whole statement then prints out, and the conditional looks good:

if Release==Release

Why doesn't Visual Studio like my conditional?

like image 966
Vaccano Avatar asked Jun 28 '26 09:06

Vaccano


1 Answers

found the solution here: How to run Visual Studio post-build events for debug build only (see this comment: I've found that the entire command needs to be on one line or you'll get "exited with code 255" )

So your post build should look like:

    if $(ConfigurationName)==Release goto _release

    goto _exit

    :_release

    echo Update $(TargetName) to be non conflicting
    "$(SolutionDir)ILMerge\RummageTypeRenamer.exe" -f XamlGeneratedNamespace.GeneratedInternalTypeHelper -t XamlGeneratedNamespace.GeneratedInternalTypeHelper$(TargetName) $(TargetName).dll
    del $(TargetName).dll
    ren $(TargetName).Runmage.dll $(TargetName).dll

    :_exit
like image 150
Nini75 Avatar answered Jul 01 '26 04:07

Nini75



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!