Ошибка выполнения fxcop с кодом возврата 515

Я установил sonar и sonar runner на свою машину, пытаясь проанализировать проект dotnet mvc в sonar-runner.properties, содержимое:

# Required metadata
sonar.projectKey=Test:TwitterWithAOP1
sonar.projectVersion=trunk
sonar.projectName=TwitterWithAOP
# Paths to source directories.
# Paths are relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# Do not put the "sonar-project.properties" file in the same directory with the source code.# (i.e. never set the "sonar.sources" property to ".")
sonar.sources=C:/Users/barumugham/Documents/Visual Studio 2013/Projects/TwitterWithAOP/TwitterWithAOP
sonar.language=cs
# Encoding of the source 
codesonar.sourceEncoding=UTF-8 
# Additional parameters
sonar.my.property=value
sonar.fxcop.installDirectory=C:/Program Files (x86)/Microsoft FxCop 1.36
sonar.fxcop.assemblyDependencyDirectories=C:/Users/barumugham/Documents/Visual Studio 2013/Projects/TwitterWithAOP/TwitterWithAOP/bin/

Мое выполнение показывает, что выполнение fxcop завершилось неудачно с кодом возврата 515. Дополнительные сведения см. в документации fxcop.


person user1403505    schedule 13.01.2014    source источник
comment
Итак, вы ознакомились с документацией FxCop?   -  person ken2k    schedule 13.01.2014


Ответы (1)


Решение

sonar.fxcop.assemblyDependencyDirectories=/gac  The misssing assemblies path was set to the gac in the sonar-project.properties file and also this line

sonar.dotnet.visualstudio.solution.file=name.sln indicating the solution path.

Теперь эхолот работает.

person user1403505    schedule 16.01.2014