- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
As SY01 problems go
Collapse
X
-
-
Originally posted by jmo21 View PostLambda's can produce some very ugly code, but used judiciously, they're great.Comment
-
Originally posted by mudskipper View PostI love lambdas.Coffee's for closersComment
-
Knock first as I might be balancing my chakras.Comment
-
Comment
-
Originally posted by OwlHoot View PostCan't you try running it in a 64 bit VM?
https://www.youtube.com/watch?v=SG3kbcTJ0yoComment
-
Originally posted by suityou01 View PostNo. It stops generating them.
Specifically what I have tracked down by decompiling the vendors product is that it uses CodeDomProvider to launch a remote debugging session. It could specify the target but it doesn't. Appalling code.
So what happens is that, when it stops working it tries to launch the 64bit csc.exe in a 32bit shell. And boom. But silent boom.
Took quite a bit of digging to find that little nugget.
"Configurations to build" to X86
"MSbuild Platform" to X86
(basically for any dropdown with auto and X86 as options set it to X86).
and see how that helps. These may not be the correct bits depending on the version of VS you are running but if it used to work and has now stopped then chances are someones messed up the project configuration and thats the cause of the problem.merely at clientco for the entertainmentComment
-
Originally posted by OwlHoot View PostCan't you try running it in a 64 bit VM?
It doesn't make the app 64 bit. The 32 bit app runs under a thunking layer called wow6432 or somesuch.Knock first as I might be balancing my chakras.Comment
-
Originally posted by eek View PostWhat do the project build settings say? Can you set
"Configurations to build" to X86
"MSbuild Platform" to X86
(basically for any dropdown with auto and X86 as options set it to X86).
and see how that helps. These may not be the correct bits depending on the version of VS you are running but if it used to work and has now stopped then chances are someones messed up the project configuration and thats the cause of the problem.
Picture a BPM Designer, written in .net with a Debug button on the ribbon bar. This should automagically launch VS2010, inject from temp files, build the pdb, and attach the debugger to the BPM engine.
I have no control over how it does this, all I can do is reverse engineer their code and weep.
This method is being called
CodeDomProvider.CompileAssemblyFromDom Method (System.CodeDom.Compiler)
The first agument takes one of these
CompilerParameters Class (System.CodeDom.Compiler)
So it should be possible to specify the target platform using the compilerparameters, but they don't appear to be doing that.
So it windows "defaults" to Framework rather than Framework64 then it works, otherwise it breaks.Knock first as I might be balancing my chakras.Comment
-
Originally posted by suityou01 View PostIt is a 64 bit VM.
It doesn't make the app 64 bit. The 32 bit app runs under a thunking layer called wow6432 or somesuch.
JWoww - Wikipedia, the free encyclopediaComment
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Are CVs medieval or just being misused? Today 05:05
- Are CVs medieval or just being misused? Yesterday 21:05
- IR35: Mutuality Of Obligations — updated for 2025/26 Yesterday 05:22
- Only proactive IT contractors can survive recruitment firm closures Sep 22 07:32
- How should a creditors’ meeting ideally pan out for unpaid suppliers? Sep 19 07:16
- How should a creditors’ meeting ideally pan out for unpaid suppliers? Sep 18 21:16
- IR35: Substitution — updated for 2025/26 Sep 18 05:45
- Payment request to bust recruitment agency — free template Sep 16 21:04
- Why licensing umbrella companies must be key to 2027’s regulation Sep 16 13:55
- Top 5 Chapter 11 JSL myths contractors should know Sep 15 03:46
Comment