Originally posted by SimonMac
View Post
- 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
- Reports of umbrella companies’ death are greatly exaggerated Nov 28 10:11
- A new hiring fraud hinges on a limited company, a passport and ‘Ade’ Nov 27 09:21
- Is an unpaid umbrella company required to pay contractors? Nov 26 09:28
- The truth of umbrella company regulation is being misconstrued Nov 25 09:23
- Labour’s plan to regulate umbrella companies: a closer look Nov 21 09:24
- When HMRC misses an FTT deadline but still wins another CJRS case Nov 20 09:20
- How 15% employer NICs will sting the umbrella company market Nov 19 09:16
- Contracting Awards 2024 hails 19 firms as best of the best Nov 18 09:13
- How to answer at interview, ‘What’s your greatest weakness?’ Nov 14 09:59
- Business Asset Disposal Relief changes in April 2025: Q&A Nov 13 09:37
Comment