I use the command line to invoke msbuild to create a published version of the website with 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 great except for the built-in resources that are not present in Website.dll . If I publish through Visual Studio, it includes embedded resources. Is there a flag that I am missing?
source share