writes about F#, WPF, async, and the like.
I need to sign a ClickOnce manifest using mage.exe
.
The certificate is in the Windows Certificate Store.
How do I do that?
There are two things you need to know.
First, use mage.exe's -CertHash
parameter instead of the -CertFile
parameter.
Second, locate the certificate's hash.
certmgr.msc
management console.Now, you can run mage.exe
like this:
1:
|
|
I need to sign a ClickOnce manifest using mage.exe
.
The certificate is in the Windows Certificate Store.
How do I do that?
How does one expose an F# record in a WPF view model? My F# code uses immutable records. But, I need to bind those records to a WPF user interface in a view model. What is the right way to do that?
Read more...I was recently debugging a ClickOnce deployment. I needed a way to quickly add and remove the *.deploy
extension from all the files in a deployment folder. Well, not all the files. The *.manifest
file is treated differently.
I was working on a project that required calculating nice ranges for chart axes. I found a useful discussion here.
Here is what I used in C# and so far it is working adequately.
Read more...I needed a menu docked to the bottom of an application's window. Docking to the bottom of the window is no problem. However, it did not work well, because by default, WPF menus drop down. I needed it to drop up.
Read more...