Sign in
All About Interop
Connecting .NET to just about anything else
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.NET
AXIS
emacs
IBM
Interop
Java
JMS
MQ
MSMQ
Not Really Interop
OpenXML
Oracle
PHP
Powershell
REST
Services
SOA
Visual Studio
WCF
Websphere
Word
WSDL
XML
XSD
Zip
Archive
Archives
December 2008
(1)
November 2008
(4)
October 2008
(6)
September 2008
(10)
August 2008
(8)
July 2008
(9)
June 2008
(12)
May 2008
(3)
April 2008
(21)
March 2008
(25)
February 2008
(6)
December 2007
(3)
November 2007
(4)
October 2007
(11)
September 2007
(16)
August 2007
(12)
July 2007
(10)
June 2007
(8)
May 2007
(5)
April 2007
(5)
March 2007
(8)
February 2007
(10)
January 2007
(12)
December 2006
(3)
November 2006
(4)
October 2006
(8)
September 2006
(4)
August 2006
(9)
June 2006
(6)
May 2006
(5)
April 2006
(7)
March 2006
(8)
February 2006
(6)
January 2006
(11)
December 2005
(12)
November 2005
(2)
September 2005
(2)
August 2005
(3)
July 2005
(10)
June 2005
(9)
May 2005
(3)
April 2005
(1)
March 2005
(13)
February 2005
(14)
January 2005
(3)
December 2004
(7)
November 2004
(11)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
All About Interop
Emacs is better than Visual Studio as a C# Development Tool?!!
Posted
over 5 years ago
by
cheeso
33
Comments
I recently spent some time fiddling with my setup of emacs on Windows. I use emacs for lots of stuff; just now I optimized my setup for development of C# apps. I knew of the JDEE , which has been around for a long time. JDEE is the Java Development...
All About Interop
Run PowerShell as a shell within Emacs
Posted
over 5 years ago
by
cheeso
15
Comments
I saw a couple people asking about running powershell as an inferior shell within emacs. Here's what I do. For the tragically unhip, some background: PowerShell is a nifty shell, it ships as an add-on to Windows. Currently at v1.0, but the v2.0 is...
All About Interop
Varying Content-Type according to the URL in a WCF REST Service
Posted
over 5 years ago
by
cheeso
8
Comments
My buddy Justin wrote about how to set the Content-Type headers in a WebGet method in a WCF REST app. Doing this would allow each WebGet method to specify its own Content-Type at runtime. After I summarized how to build a WCF REST app in a post a...
All About Interop
C# Code Completion in emacs - a look at Cedet, semantic, and CSDE
Posted
over 5 years ago
by
cheeso
7
Comments
In my prior post I wrote that I have a dream of getting c# code completion in emacs. Jason Rumney wrote to me: I think everything you want is here: http://cedet.sourceforge.net/semantic.shtml Semantic is what JDEE uses to provide code completion, and...
All About Interop
C# Code Completion in emacs - CSDE now has a CsdeShell
Posted
over 5 years ago
by
cheeso
7
Comments
I've been fiddling some more with C# code completion in emacs. I wrote a csde-shell.el that is the CSDE equivalent to JDE 's beanshell.el . It runs as an inferior shell in emacs. The csde code-completion logic calls out to this shell to inquire about...
All About Interop
MSBuild script for compiling all .cs files into a single assembly (DLL or EXE)
Posted
over 5 years ago
by
cheeso
6
Comments
I love Visual Studio, but sometimes I build code using no graphical IDE - just the .NET Framework SDK. I wrote an article not long ago describing how to build a WCF Service using .NET 3.5, and just the SDK. I've always been a makefile weenie, but msbuild...
All About Interop
Getting emacs flymake.el to work with C# modules
Posted
over 5 years ago
by
cheeso
6
Comments
[I'm going to try to keep this up to date, because I periodically change tweak and improve flymake setup... Latest is 23 April 2008] I Loooooooove Flymake. Emacs, since a while back, ships with a package called flymake.el , that defines a minor mode...
All About Interop
I have a dream! C# Code Completion in Emacs (csense, dabbrev, etc)
Posted
over 5 years ago
by
cheeso
5
Comments
No good options here. I know, dabbrev does some neat things. But it pales in comparison to real code completion as you get in Visual Studio, or, I think, even SharpDevelop. I checked out a module called csense that a lone developer hacked together...
All About Interop
Powershell script to batch-update AssemblyInfo.cs with new Version
Posted
over 5 years ago
by
cheeso
5
Comments
I wrote this script to update all the AssemblyInfo.cs files in a Visual Studio solution, to have the same version number. This is the kind of thing I would have used Perl to do, in the past. But Powershell's got this covered nicely. [ 23 April 2008...
All About Interop
Dino's .emacs file
Posted
over 5 years ago
by
cheeso
4
Comments
[I'm going to try to keep this up to date, because I periodically change tweak and improve flymake setup... Latest is 15 April 2008] This includes all my setup for C# development, including yasnippet, hideshow, flymake, htmlize, defaultcontent, timestamp...
All About Interop
WPF invokes Powershell.exe as an inferior shell
Posted
over 5 years ago
by
cheeso
3
Comments
I wrote this up as an example of how to run powershell.exe as an inferior shell from within a WPF app. It is not a "Powershell host" in the normal sense of the word, with a RunSpace and a RunSpaceFactory and so on. Instead, this example uses System...
All About Interop
PowerShell in Emacs, proof!
Posted
over 5 years ago
by
cheeso
2
Comments
Here's the proof that you can run powershell as a shell in Emacs . Grab the download from yesterday to get this awesome power yourself!
All About Interop
Why choose WCF for REST?
Posted
over 5 years ago
by
cheeso
2
Comments
Chuck, in a comment on a previous post , posed this question: Why choose WCF for a REST app? Here it is in full context: I'm having a hard time justifying why I would use WCF for REST. It seems dead simple in ASP.NET (or any other web framework...
All About Interop
Making Hideshow.el work with Csharp-mode.el and region/endregion
Posted
over 5 years ago
by
cheeso
1
Comments
The default hideshow.el stuff in emacs doesn't "do" region/endregion, which is commonly seen in C# modules. Thankfully, the hideshow people thought of this, and made available a customization hook, where you can specify how to navigate blocks within the...
All About Interop
MSBuild script for compiling each .cs file into an EXE
Posted
over 5 years ago
by
cheeso
1
Comments
I previously wrote about using MSBuild to build all .cs files in a directory into a single exe . Here's a companion script that builds every .cs file into a separate exe. This might be helpful for directories where you keep sets of small projects,...
All About Interop
CopySourceAsHTML in Emacs? Htmlize.el
Posted
over 5 years ago
by
cheeso
1
Comments
There's a nice add-in for Visual Studio called CopySourceAsHTML (for VS2005 , VS2008 ), which I have been using for a while now. Turns out there was an earlier progenitor in htmlize.el for emacs. Here's the result:
All About Interop
MySpace, and Content-Type Negotiation in REST using WCF
Posted
over 5 years ago
by
cheeso
1
Comments
Hah! followup on a hot topic. I posted earlier on content-type negotiation in REST with WCF. My buddy Vittorio wrote about MySpace's kiss-and-tell episode at Mix08. MySpace has exposed a REST interface for the MySpace resources - see http://developer...
All About Interop
C# Code Completion in emacs - getting beanshell equivalent in CSDE
Posted
over 5 years ago
by
cheeso
1
Comments
The beanshell is something that, I think, was specially engineered to support the JDE, and particularly the code completion stuff. In JDEE, emacs starts up a Java VM and runs the beanshell class, in comint (command interpreter) mode. Then emacs can send...
All About Interop
Interesting - CacheMan for .NET
Posted
over 5 years ago
by
cheeso
0
Comments
A distributed object cache (distributed hashtable) for .NET http://www.sriramkrishnan.com/blog/2008/02/cacheman-fast-distributed-hashtable-for.html
All About Interop
Whatever happened to WSRP? (psst: I'll give you a hint, it rhymes with BEST, and you can do it on a mattress)
Posted
over 5 years ago
by
cheeso
0
Comments
Remember when the Java vendors used to advocate WSRP as a way to accomplish Interop ? I never thought much of WSRP as a tool for implementing interop, and I went on the record with that . Web services (without the RP add-on), and REST are what people...
All About Interop
C# snippets for yasnippet.el (Emacs snippets)
Posted
over 5 years ago
by
cheeso
0
Comments
Some nice person built yasnippet.el , a snippet package for emacs. You type 2 or 3 letters, then hit TAB, and it expands into a snippet. Like dabbrev, but with forms-based fill-in fields. It's quickie code generation. Sadly, no C# snippets are included...
Page 1 of 1 (21 items)