I'm not sure how to do exactly what you ask, but could you pass that string using the /p option?
msbuild Project.proj /t:ApplicationDeployment /p:Environment=DEV;MyValue=ApplicationDeployment
----------
The only other way I can see to do it is to use a conditional property in each target, and thus establish the first target to be invoked.
<Target Name="ApplicationDeployment">
<PropertyGroup>
<InvokedTarget Condition="'${InvokedTarget}'==''">ApplicationDeployment</InvokedTarget>
</PropertyGroup>
...
</Target>