This code produces a FileNotFoundException, but ultimately runs without issue:

void ReadXml()
{
    XmlSerializer serializer = new XmlSerializer(typeof(MyClass));
    //...
}

Here is the exception:


A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll

Additional information: Could not load file or assembly 'MyAssembly.XmlSerializers, Version=1.4.3190.15950, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.


It appears that the framework automatically generates the serialization assembly if it isn't found. I can generate it manually using sgen.exe, which alleviates the exception.

How do I get visual studio to generate the XML Serialization assembly automatically?


Update: The Generate Serialization Assembly: On setting doesn't appear to do anything.

link|improve this question

48% accept rate
I've settled on using Sgen as well, which works for normal types. It does not, however, allow me to instantiate XmlSerializers for arrays of those types. If you've encountered this, please post here: stackoverflow.com/questions/1844870/… – anthony Dec 4 '09 at 19:47
feedback

7 Answers

up vote 35 down vote accepted

This is how I managed to do it by modifying the MSBUILD script in my .CSPROJ file:

First, open your .CSPROJ file as a file rather than as a project. Scroll to the bottom of the file until you find this commented out code, just before the close of the Project tag:

<!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->

Now we just insert our own AfterBuild target to delete any existing XmlSerializer and SGen our own, like so:

<Target Name="AfterBuild" DependsOnTargets="AssignTargetPaths;Compile;ResolveKeySource" Inputs="$(MSBuildAllProjects);@(IntermediateAssembly)" Outputs="$(OutputPath)$(_SGenDllName)">
   <!-- Delete the file because I can't figure out how to force the SGen task. -->
   <Delete
     Files="$(TargetDir)$(TargetName).XmlSerializers.dll"
     ContinueOnError="true" />
   <SGen
     BuildAssemblyName="$(TargetFileName)"
     BuildAssemblyPath="$(OutputPath)"
     References="@(ReferencePath)"
     ShouldGenerateSerializer="true"
     UseProxyTypes="false"
     KeyContainer="$(KeyContainerName)"
     KeyFile="$(KeyOriginatorFile)"
     DelaySign="$(DelaySign)"
     ToolPath="$(SGenToolPath)"
     Platform="$(Platform)">
      <Output
       TaskParameter="SerializationAssembly"
       ItemName="SerializationAssembly" />
   </SGen>
</Target>

That works for me.

link|improve this answer
Thanks, worked nicely. It helped that I put the classes I needed to serialize into a separate project so that SGEN would just work on those. – Craig Shearer Dec 2 '09 at 21:08
Don't forget to include Platform for SGen if doing platform specific builds, something like: Platform="$(Platform)". I was getting a failure like: WRN: Comparing the assembly name resulted in mismatch of Processor Architecture: Ref x86, Def MSIL. – Scott Feb 2 '11 at 2:28
This generates the DLL files just fine but it still seems to be doing the on-the-fly assembly generation. Do I need to do anything extra with this DLL after it's created? – RandomEngy Jul 18 '11 at 4:29
Just deploy it. You might want to use the debugger to learn exactly which type causes the dynamic assembly generation. Even if you serialize all your types, they are surely composed of other types, some framework types, that may require assembly generation. – flipdoubt Jul 18 '11 at 11:33
Does this go within the .DLL where the classes are defined or the project for the .exe? I suppose since it's MSBuildAllProjects it goes in the .exe correct? – Seph Nov 7 '11 at 6:07
feedback

The other answers to this question have already mentioned the Project Properties->Build->Generate Serialization Assemblies setting but by default this will only generate the assembly if there are "XML Web service proxy types" in the project.

The best way to understand the exact behaviour of Visual Studio is to to examine the GenerateSerializationAssemblies target within the C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727**Microsoft.Common.targets** file.

You can check the result of this build task from the Visual Studio Output window and select Build from the Show output from: drop down box. You should see something along the lines of

C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\bin\sgen.exe /assembly:D:\Temp\LibraryA\obj\Debug\LibraryA.dll /proxytypes /reference:.. /compiler:/delaysign- LibraryA -> D:\Temp\LibraryA\bin\Debug\LibraryA.dll

The key point here is the /proxytypes switch. You can read about the various switches for the XML Serializer Generator Tool (Sgen.exe)

If you are familiar with MSBuild you could customise the GenerateSerializationAssemblies target so that SGen task has an attribute of UseProxyTypes="false" instead of true but then you need to take on board all of the associated responsibility of customising the Visual Studio / MSBuild system. Alternatively you could just extend your build process to call SGen manually without the /proxytypes switch.

If you read the documentation for SGen they are fairly clear that Microsoft wanted to limit the use of this facility. Given the amount of noise on this topic, it's pretty clear that Microsoft did not do a great job with documenting the Visual Studio experience. There is even a Connect Feedback item for this issue and the response is not great.

link|improve this answer
feedback

In case someone else runs into this problem suddenly after everything was working fine before: For me it had to do with the "Enable Just My Code (Managed Only)" checkbox being unchecked in the options menu (Options -> Debugging) (which was automatically switched off after installing .NET Reflector).

EDIT: Which is to say, of course, that this exception was happening before, but when "enable just my code" is off, the debugging assistant (if enabled), will stop at this point when thrown.

link|improve this answer
feedback

As Martin has explained in his answer, turning on generation of the serialization assembly through the project properties is not enough because the SGen task is adding the /proxytypes switch to the sgen.exe command line.

Microsoft has a documented MSBuild property which allows you to disable the /proxytypes switch and causes the SGen Task to generate the serialization assemblies even if there are no proxy types in the assembly.

SGenUseProxyTypes

A boolean value that indicates whether proxy types should be generated by SGen.exe. The SGen target uses this property to set the UseProxyTypes flag. This property defaults to true, and there is no UI to change this. To generate the serialization assembly for non-webservice types, add this property to the project file and set it to false before importing the Microsoft.Common.Targets or the C#/VB.targets

As the documentation suggests you must modify your project file by hand, but you can add the SGenUseProxyTypes property to your configuration to enable generation. Your project files configuration would end up looking something like this:

  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
    <!-- Snip... -->
    <GenerateSerializationAssemblies>On</GenerateSerializationAssemblies>
    <SGenUseProxyTypes>false</SGenUseProxyTypes>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
    <!-- Snip... -->
    <GenerateSerializationAssemblies>On</GenerateSerializationAssemblies>
    <SGenUseProxyTypes>false</SGenUseProxyTypes>
  </PropertyGroup>
link|improve this answer
(+1) I originally started down the path of the selected answer, but found (at least in MSBuild 4.0) that just setting the $(SGenUseProxyTypes) property worked, a one line fix! – Brian Kretzler Mar 28 at 20:06
feedback

Look in the properties on the solution. On the build tab at the bottom there is a dropdown called "Generate Serialization assembly"

link|improve this answer
This does not appear to be producing anything. – Adam Tegen Sep 25 '08 at 16:23
you have to toggle it to "On". Auto doesn't seem to do anything – Darren Kopp Sep 25 '08 at 17:23
3  
doesn't produce anything even when set to ON – sarsnake Sep 8 '09 at 20:46
2  
that works only for web service proxy types - otherwise one should use MSBuild <SGen/> task (or command tool sgen.exe). – ProfyTroll Dec 29 '10 at 13:56
There is a MS Connect issue that is open that indicates that was closed with a reason of "By Design" connect.microsoft.com/VisualStudio/feedback/details/123088/… – Daniel McQuiston Mar 20 at 21:34
feedback

Changing Generate Serialization Assembly to ON - Works. Just Curiously, I ran into this trouble, when i cleaned my Solution & Rebuild it. I have 4 Projects in my Solution. Any one care to throw some light on why would this happen.

link|improve this answer
feedback

What I don't understand in this story is why generation of serializaton assembly fails but WCF call goes through. I am getting FileNotFoundException for .XmlSerializers not found, but the call is still made to the WCF endpoint.

I found that manual assembly generation by SGEN fails due to the duplicate types, but WCF call is being made. How is it possible?

-Stan

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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