vote up 2 vote down star
1

I'm using the command-line to call msbuild to generate a published version of a website using this command:

msbuild.exe /t:ResolveReferences;Compile;_CopyWebApplication /p:OutDir=dir/bin/ 
    /p:WebProjectOutputDir=dir/ /p:Debug=false /p:Configuration=Release 
    Website.csproj

This works fine other than the embedded resources not being present in the Website.dll. If I do the publish via Visual Studio it includes the embedded resources. Is there a flag I'm missing?

flag

79% accept rate

2 Answers

vote up 1 vote down check

It appears

/t:PrepareResources

calls all the targets youve added to your msbuild call, try that

heres the top few levels of what gets called

PrepareResources 
    PrepareResourceNames
        AssignTargetPaths
        SplitResourcesByCulture
        CreateManifestResourceNames
        CreateCustomManifestResourceNames
    ResGen
        ResolveAssemblyReferences
        SplitResourcesByCulture
        BeforeResGen
        CoreResGen
        AfterResGen
    CompileLicxFiles
link|flag
vote up 2 vote down

An extra target is required like so:

msbuild.exe /t:PrepareResources;ResolveReferences;Compile;_CopyWebApplication 
    /p:OutDir=dir/bin/ /p:WebProjectOutputDir=dir/ /p:Debug=false 
    /p:Configuration=Release Website.csproj
link|flag
How did you solve the problem. Did you capture the VS build output? How? – Ed Blackburn Sep 25 at 15:19
I made VS output the build process "Detailed": Tools > Options > Projects and Solutions > Build and Run > MSBuild project build output verbosity. Then I looked at every target that related to resources and added it in. I've found that more than the one argument seems to be required now by the way. I've updated the above answer. – Garry Shutler Sep 25 at 15:40
are they all called from a single target under the .csproj? there might be an abstracted target you can call instead of all those individual ones – Andrew Bullock Sep 25 at 15:51
try microsoft.common.targets and microsoft.chsarp.targets – Andrew Bullock Sep 25 at 15:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.