Rory Primrose

Learn from my mistakes, you don't have time to make them yourself

View project on GitHub

Fixing New Relic Nuget package for Azure

Posted on February 7, 2013

I tried to install the New Relic Nuget package for an Azure solution. Unfortunately the Nuget install script failed to update the ServiceDefinition.csdef file and provided the following error.

Unable to find the ServiceDefinition.csdef file in your solution, please make sure your solution contains an Azure deployment project and try again.

One of the good things about Nuget is that the install scripts are easily available to the solution.

The install script was trying to add the following xml fragment to the start of the web role definition in ServiceDefinition.csdef file.

<Startup>
    <Task commandLine="newrelic.cmd" executionContext="elevated" taskType="simple">
    <Environment>
        <Variable name="EMULATED">
        <RoleInstanceValue xpath="/RoleEnvironment/Deployment/@emulated"/>
        </Variable>
    </Environment>
    </Task> 
</Startup>

Adding this manually and we are good to go.