Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know how to get Nlog's nlogger snippet to work in Visual Studio 2012 like it did in 2010? I don't see anything on their forum or on the internet when googing around. Seems like something that people who use Nlog would want back.

share|improve this question
Any one out there know this one :( – gcoleman0828 Dec 7 '12 at 14:26
Im wondering the exactly same thing. – publicENEMY Dec 11 '12 at 3:21
@publicENEMY - Seriously. I cannot be the only one who uses this thing and VS2012?? – gcoleman0828 Dec 20 '12 at 0:22

1 Answer

up vote 3 down vote accepted

Haven't worked out how to get the real snippet installed, so I manually created a snippet to perform the same function as the original did.

Create the file nlogger.snippet in the following folder:

My Documents\Visual Studio 2012\Code Snippets\Visual C#\My Code Snippets

The contents of the file should be as follows:

    <?xml version="1.0" encoding="utf-8"?>
    <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
        <CodeSnippet Format="1.0.0">
            <Header>
                <Title>
                    NLog Logger Snippet
                </Title>
                <Shortcut>nlogger</Shortcut>
            </Header>
            <Snippet>
                <Code Language="CSharp">
                    <![CDATA[private static NLog.Logger logger = NLog.LogManager.GetCurrentClassLogger();]]>
                </Code>
            </Snippet>
        </CodeSnippet>
    </CodeSnippets>

Hopefully this helps someone.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.