There are two names for the application that you are publishing, the productName and the publishName (publishName/AssemblyName I think they are the same). Both of which you can specify in your .csproj file.
I want to set both of these without changing the .csproj file using MSBuild's command line parameters. So far I have used this page from msdn and figured out how to change the product name.
MSBuild.exe /t:Build /p:ProductName=$productName.
How can I change the publishName in a similar fashion?
When I say publishName I mean the file that gets created with the .application extension. Anyone know what property I need for this - /p:*?
I have also checked out a Stack Overflow page and tried all of the suggestions there but they didn't work.