The Microsoft XML Serializer Generator Tool - creates xml serialiser assembly from an existing assembly.
0
votes
1answer
36 views
Visual Studio 2010 Can't Find 'sgen.exe' [duplicate]
I have a C# assembly project which I have selected to build in Visual Studio 2010, which is set to serialize itself. When I try to build the project, I get this error:
Error 1 The specified task ...
0
votes
1answer
37 views
Run sgen on a 5MB assembly with many classes with the same name
I'm trying to generate the XmlSerializers assembly for a project that outputs a 5MB dll. This project has many classes with different .Net namespaces but with the same name, so sgen is returning the ...
0
votes
1answer
488 views
Problems installing Windows SDK 7.1 for dot.net Framework 4.0 / 2 Problems in 1
Since yesterday i try to install windows sdk 7.1 for dot.net Framework 4.0 on my windows 7 x64
machine. I get everytime the same Error during the installation.
Error message:
"Installation of the ...
0
votes
0answers
154 views
SGEN Could not load file or assembly with TFS Build
I cannot get any of my projects to build using TFS Automated Build due to a failure with sgen.exe. The exact error is:
SGEN : error : Could not load file or assembly ...
0
votes
0answers
201 views
sgen.exe build error “Unable to load one or more of the requested types”
I am building a solution which contains several solutions. All but one of them build without any problems. The problematic one emits the following message:
Error 2 Unable to load one or more ...
1
vote
0answers
74 views
Which MSBuild tasks initiate a call to SGen?
I have inherited a complex MSBuild script which builds & deploys multiple solutions. When I run the script I see the following error in log:
SGEN: Cannot generate serialization assembly
...
2
votes
1answer
375 views
SGEN failure: An attempt was made to load an assembly with an incorrect format in VS2008
I was able to find several similar questions asked and answered, but none of the answers or exact conditions applied to my situation.
I have a .NET 3.5 project being built for x64.
I also have an ...
0
votes
0answers
339 views
Problems with sgen.exe & Oracle.DataAccess.dll (Visual Studio 2012)
We tried to migrate our webservice project to Visual Studio 2012 from Visual Studio 2010. The project uses the Oracle.DataAccess.dll (v 11.2.0.3 32 and 64 Bit) and we create *.XmlSerializers.dll with ...
0
votes
1answer
152 views
SGEN with delay-signing on 64-bit Server
I'm trying to resolve a problem where SGEN is throwing an error when invoked as part of my .NET solution build on a build server. I'm running the build from the command-line on the server to eliminate ...
0
votes
2answers
327 views
XML Serializer Generator Tool (Sgen.exe) to generate 64-bit Windows DLL?
I am building a 64-bit C# .NET DLL in Visual Studio 2010. My project's post-build steps include the running of sgen.exe to generate a corresponding XmlSerializer DLL for my assembly. (I'm trying to ...
4
votes
2answers
110 views
How to exclude specific types from serialization?
I run sgen against my assembly with a metric ton of types. I want to exclude 2 types from serialization. I don't seem to be able to find a way to do it.
I see that sgen has a /type switch to specify ...
0
votes
1answer
168 views
SGEN fails on where clause of public generic method
I have a project where SGEN is used to precompile the serialization assemblies (without the /proxytypes flag). In this project lives a class that up until now has been internal (thus sgen would leave ...
3
votes
3answers
1k views
XmlSerializer not using XmlSerializers.dll created by sgen
In my Visual Studio 2010 project, I use following Post-Build event command line to use sgen to create XmlSerializers.dll.
Post build event:
"$(ProgramFiles)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX ...
1
vote
1answer
3k views
An attempt was made to load an assembly with an incorrect format
I'm working with VS2008 and VS2010 for different projects simultaneously. Recently I tried to generate the serialization assemblies for the Entities Project and was unable to generate the same via ...
2
votes
1answer
649 views
Unable to generate a temporary class - Cryptographic failure while signing assembly
I have a signed class library that I want to create assemblies for via the sgen tool. However, I get an error when I try to run the following command:
$ sgen.exe /a:testsign.dll /force ...
1
vote
1answer
513 views
Mixed mode assembly is built against version X and cannot be loaded in version Y of the runtime without additional configuration information
After doing some code refactoring, my VS2010 VB.Net Web Application project has stopped compiling with the following error:
"Mixed mode assembly is built against version 'v1.1.4322' of the runtime ...
2
votes
1answer
416 views
XML Serialization assembly for non-web projects
I am attempting to solve the well known problem of automatically generated serialization assemblies in VS 2010, both VB.NET and C#. The "Generate Serialization Assemblies" option in project settings ...
3
votes
0answers
619 views
Visual Studio 2010 using wrong framework version of sgen.exe
I have a Visual Studio 2010 project that targets .NET Framework 2.0 and has "Generate serialization assembly" set to "On". When built I noticed the *.XmlSerializers.dll assembly generated targets ...
1
vote
1answer
226 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 ...
0
votes
1answer
241 views
Compiling Mono from Visual Studio with sgen support
I have a Mono binary obtained from a build with Visual Studio. The option --gc=sgen used to enable sgen garbage collector is not available:
Error: --gc=<NAME> option not supported on this ...
3
votes
1answer
858 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" ...
2
votes
2answers
795 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 ...
0
votes
1answer
249 views
Custom building SGEN assemblies and including in installer
I've been rather confused by some SGEN stuff. I've enable the generation of serialization assemblies for one of my projects. Originally I got the follow error which I believe I've solved by doing some ...
1
vote
2answers
70 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, ...
0
votes
1answer
174 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 ...
1
vote
1answer
391 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 ...
2
votes
1answer
1k views
.XmlSerializers.dll how to use it - confused by examples over the Internet
I'm quite newbie to C#. I've started to use SGEN generated XmlSerializers.dll and I'm really confused right now. Despite that I cannot find any true step by step tutorial how to use it properly I'm ...
0
votes
1answer
708 views
Serialize() not using .XmlSerializers.dll produced with Sgen
I have a sgen step in my .NET 3.5 library, producing a correct XYZ.XmlSerializers.dll in the output directory.
Still having poor serialization performance, I discovered that .NET was still invoking a ...
3
votes
0answers
589 views
Providing private key for SGEN
My .NET assembly is signed with digital certificate from comodo. I use SGEN to generate serialization assembly. SGEN requires a key file in order to generate such assembly for a signed source. I tried ...
1
vote
2answers
705 views
Build VS2010 solution using MSBuild 2008
Our dev team recently upgraded solution to VS2010 from VS2008 to use some of the features from VS2010 IDE. But our targeted framework is still .Net 3.5. When dev runs the MSBuild from VS 2008 command ...
3
votes
5answers
545 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 ...
1
vote
1answer
301 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 ...
7
votes
3answers
2k views
Can VS.NET 2010/MSBUILD produce XmlSerializers for .NET 3.5 SP1?
I just upgraded a VS 2008 solution containing WinForms, general use libraries, and a web app to VS 2010, but all projects still target .NET 3.5 SP 1. I use this technique to generate XmlSerializers ...
1
vote
2answers
480 views
SQL Server “version, culture or public key mismatch” during “create assembly” when loading XMLSerializers created with sgen utility
I'm trying to create a CLR function in SQLServer that calls a web service. When I create the first assembly, the AssemblyVersion in AssemblyInfo.cs is 1.0.*. I'll run sgen to create the accompanying ...
2
votes
1answer
1k views
How to force Sgen to create .net 3.5 serializers assembly
I have a sgen build step in my .NET 3.5 library. In VS2010 this generates .NET 4 MyLib.XmlSerializers.dll, which cannot be loaded from .NET 3.5 apps. Does anyone know how to change build step to get ...
41
votes
10answers
19k views
VSTS 2010 SGEN : error : Could not load file or assembly (Exception from HRESULT: 0x80131515)
I am experiencing a strange issue with VS2010. We use TFS to build our API dlls and we used to reference them in our projects usign a mapped network drive that was fully trusted. We have been working ...
12
votes
5answers
8k views
How to set SGEN toolpath in Msbuild to target 3.5 framework
I've just upgraded a project from VS2008 to VS2010 but I'm still targeting the 3.5 framework.
In my project file I have a custom task to run SGEN to generate my XmlSerializers.dll. However the ...
5
votes
2answers
6k views
SGEN doesn't work after upgrading from VS2008 to VS2010
I just recently upgraded a VS2008/.NET 3.5 SP1 project to VS2010 and .NET 4. I have a post-build event which calls SGEN to generate the XmlSerializers assembly.
Whenever I try to run it I get the ...
1
vote
1answer
540 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.
...
4
votes
2answers
3k 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. ...
4
votes
1answer
3k views
SGEN XMLSerializer - should be .XMLSerializers.dll added as a reference to the current project or to the GAC?
I do some stuff with XMLSerializer class. Like a most of beginners I face with performance issue on app start. I read a lot of blogs, articles and finally use SGEN tool. Now performance looks to be ok ...
1
vote
1answer
933 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 ...
9
votes
3answers
3k views
sgen.exe x64 .net c# fails with “assembly with an incorrect format”
I have ws2008 x64 with vs2008.
When I set my vs to x64 (because I have 64bit dlls) and run compilation sgen says that
An attempt was made to load an assembly with an incorrect format
VS takse ...
3
votes
2answers
2k 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 ...
2
votes
0answers
124 views
SGEN throwing an AccessViolation error
I have a build process using the sgen.exe tool to build Xmlserializer assemblies to optimize their use in a WinForms application. This application was originally written on the .NET 2.0 framework and ...
1
vote
1answer
436 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()
...
2
votes
1answer
2k 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
1answer
434 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 ...
7
votes
1answer
2k 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
3answers
464 views
What is the most efficient way to Deserialze an XML file
Aloha,
I have a 8MB XML file that I wish to deserialize.
I'm using this code:
public static T Deserialize<T>(string xml)
{
TextReader reader = new StringReader(xml);
Type type = ...



