"sgen.exe exited with code -532459699"

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have a C#.NET 2.0 application that when I try to Build it I am receiving
the error:

"sgen.exe exited with code -532459699"

Thanks in advanced for any help.
Asaf
 
Hi,
I had the same problem some time ago...
Try this:
Open up the project properties.
Open up the build tab.
Set "Generate Serialization Assembly" to "Off"


Bye,
Diego
 
Hi Diego,

Thanks for replying to my issue.
If I set "Generate Serialization Assembly" to "Off" the application can’t
build with error that he can’t find depended files as I am using a references
to Web Services and I think there is a need for the "Serialization Assembly".

Kind Regards,
Asaf
 
Hi Asaf,

Please use following steps to find more about the error.

1) Start "Visual Studio 2005 Command Prompt" from your start menu under
"Microsoft Visual Studio 2005/Visual Studio Tools"

2) Change directory to your project directory (which has enabled "Generate
Serialization Assembly", type following command (replace project name
accordingly):

msbuild.exe MyProject.csproj /t:Rebuild /p:Configuration=Debug
/verbosity:diag > diag.txt

3) Use notepad to open diag.txt, find string "sgen.exe", you will see the
full command line to sgen.exe;

4) Create a simple batch file "testsgen.bat" and copy the above command
line to it, enclose sgen.exe full path with quotes if it contains space;
add a new switch "/verbose" to its command line parameters; now run this
batch file and see the output to know more information why it failed.
Please post the detailed log here.


If in doubt, would you please create a simple reproducible project to me?
Thanks.



Sincerely,
Walter Wang ([email protected], remove 'online.')
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications. If you are using Outlook Express, please make sure you clear the
check box "Tools/Options/Read: Get 300 headers at a time" to see your reply
promptly.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top