- 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
- When your agency shuts: a recruiter’s 5 tips if you’re unpaid Today 06:57
- What the 2025 employment status review means for contractors Yesterday 06:39
- Contractors, Autumn Budget 2025 is set to extend the big income tax freeze Aug 27 07:15
- Labour to run employment status consultation ‘before 2026’ Aug 26 05:03
- Contractor Accountants Clone - Testing Aug 25 10:08
- Contractors, AI is making the CV’s death knell louder Aug 22 22:13
- Decline in IT contractor demand accelerated in July 2025 Aug 21 21:26
- Best CV length for IT contractors be like… Aug 20 22:55
- Highly strategic workforces ‘now blend AI with human IT contractors’ Aug 19 22:56
- LinkedIn insecurity: Does my IT contractor career look bad in this? Aug 18 01:10
Comment