[CodeDom]In 32bit Compilen?

02/10/2012 12:27 beatd0wn[]#1
Cheers,
Ich benutze folgende CodeDom Funktion:
Code:
Imports System.CodeDom.Compiler
Public Class Compiler
    Public Shared Sub GenExe(ByVal Output As String, ByVal Source As String, ByVal Icon As String)
        On Error Resume Next

        Dim Compiler As ICodeCompiler = (New VBCodeProvider).CreateCompiler()
        Dim Parameters As New CompilerParameters()
        Dim cResults As CompilerResults

        Parameters.GenerateExecutable = True
        Parameters.OutputAssembly = Output

        Parameters.CompilerOptions = "/target:winexe"
        Parameters.ReferencedAssemblies.Add("System.dll")
        Parameters.ReferencedAssemblies.Add("System.Data.dll")

        Dim Version = New Dictionary(Of String, String)
        Version.Add("CompilerVersion", "v2.0")

        Parameters.CompilerOptions = "/filealign:0x00200 /optimize+ /debug- /target:winexe"

        Dim ICO As String = IO.Path.GetTempPath & "\iCompiler.ico"

        If Icon <> "" Then
            IO.File.Copy(Icon, ICO)
            Parameters.CompilerOptions &= " /win32icon:" & ICO
        End If

        cResults = Compiler.CompileAssemblyFromSource(Parameters, Source)

        If cResults.Errors.Count > 0 Then
            For Each CompilerError In cResults.Errors
                MessageBox.Show("Error: " & CompilerError.ToString, "", MessageBoxButtons.OK, MessageBoxIcon.Error)
            Next
        ElseIf cResults.Errors.Count = 0 Then

        End If
        If Icon <> "" Then : IO.File.Delete(ICO) : End If
    End Sub
End Class
Eigentlich funktioniert alles einwandfrei ich habe jedoch folgedens Problem:
Mein OS is Win7 64bit, muss es aber hinbekommen, dass der compiler eine 32bit .exe erstellt. Jemand eine Idee?
02/12/2012 15:55 x]vIrus[x#2
bei den compileroptions musst noch "/platform:x86" hinzufügen