Tagged Questions

7
votes
1answer
1k views

Precompile XmlSerializers with XmlAttributeOverrides

When constructing XmlSerializer instances in .NET, assemblies for serializing and deserializing the specified type are generated dynamically. This is a time-consuming process. The sgen.exe tool from ...
3
votes
2answers
2k views

MSBuild cannot find SGen when compiling a solution

I've looked at several other SGen-related questions on here and either their answers don't apply or their answers don't fix this for me. I have installed several SDKs to fix this issue with no luck. ...
2
votes
3answers
232 views

WPF error CS0433

I'm getting this error in my WPF application. I get this error not always. If I make Clean and then Rebuild everything is ok. SGEN (0,0): error: Unable to ...
2
votes
2answers
1k views

Pre-generating XmlSerializers using Sgen and ILMerge. Trouble with arrays

I use XmlSerializer extensively and rather than allowing .NET to generate the necessary serialization assemblies at runtime, I'd like to generate these assemblies ahead of time and bundle them with my ...
1
vote
1answer
60 views

XmlSerializer.Serialize takes a long time… why?

Given the following code from RssToolkit in RssXmlHelper.cs: /// <summary> /// Returns XML of the Generic Type. /// </summary> /// <param name="rssDocument">The RSS ...
1
vote
2answers
196 views

Generating an Xml Serialization assembly for a custom XmlSerializer

I have methods in my class for serializing/deserializing using a different XML structure than what would be produced with the default serializer. The methods create an XmlSerializer for my type but ...
1
vote
2answers
35 views

What is the cause of “Could not load file or assembly XYZ” erros?

I must be going mental, right? Since a couple of days I have been getting errors like MyAssembly Could not load file or assembly 'AnotherAssembly, Version=1.0.0.0, Culture=neutral, ...
1
vote
1answer
134 views

Serialization of internal class to xml

I ran into problems when trying to xml serialize a class to xml after I changed it from public to internal. Before I changed protection level it was working fine, so I am looking for a way to get ...
1
vote
1answer
195 views

Even using sgen on my service class still results in agonizingly slow constructor

So I'm trying to speed up our applications startup times -- and I've identified a major bottleneck to work on. Each of our webservice client classes takes forever and a day to instantiate. Some ...
1
vote
1answer
418 views

What type of things can cause sgen msbuild task to fail intermittantly with Access Violation?

In our MSBuild file for our project we sgen an assembly containing classes used during xml serialization. The classes are generated via xsd.exe. We use the following SGen task configuration. ...
1
vote
1answer
499 views

How to make sgen.exe keep the version of the assembly?

I want to create a serialization assembly for my assembly. sgen does it fine, but I can't figure out how to get it to assign the serialization assembly the same version as the source assembly. Any ...
1
vote
1answer
314 views

Bug in Sgen.exe

It seems that sgen.exe could not generate generic type XmlSerializer, right? My genereic type: [Serializable] [XmlRoot(ElementName = "Masterx")] public class Masterx<T> where T : class, new() ...
1
vote
1answer
1k views

SGEN, InternalsVisibleTo and assembly signing

I'm trying to do something a bit unusual... I have this class Foo : public class Foo { public Foo(string name) { this.Name = name; } internal Foo() { } public ...
1
vote
2answers
769 views

XmlSerializer, sgen.exe and generics

I have a generic type: public class Packet<T> where T : IContent { private int id; public int Id { get { return this.id; } } private T content; public T Content { get { return ...
0
votes
1answer
96 views

SGEN error reflecting type

I have implemented the change mentioned in the accepted answer of Generating an Xml Serialization assembly as part of my build <Target Name="AfterBuild" ...
0
votes
1answer
49 views

How does sgen.exe decide which types to generate serializers for?

You can use sgen.exe to create serialization assemblies ahead of time rather than have them created on the fly. But how does it decide what types to make serializers for? I've tried to switch to ...
0
votes
1answer
330 views

Why is my application using CSC during execution

I've been experimenting with the Remotesoft Linker and Mini Deployment tools to create a single native executable (that doesn't need the framework installed) from my managed code. One of the ...