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
- Even IT contractors connect with 'New Year, New Job.' But… Today 09:28
- Which IT contractor skills will be top five in 2025? Jan 2 09:08
- Secondary NI threshold sinking to £5,000: a limited company director’s explainer Dec 24 09:51
- Reeves sets Spring Statement 2025 for March 26th Dec 23 09:18
- Spot the hidden contractor Dec 20 10:43
- Accounting for Contractors Dec 19 15:30
- Chartered Accountants with MarchMutual Dec 19 15:05
- Chartered Accountants with March Mutual Dec 19 15:05
- Chartered Accountants Dec 19 15:05
- Unfairly barred from contracting? Petrofac just paid the price Dec 19 09:43
Comment