forked from TrimbleSolutionsCorporation/VSSonarQubeExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsonar-project.properties
62 lines (58 loc) · 2.62 KB
/
sonar-project.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
sonar.jdbc.url=jdbc:postgresql://localhost:5432/sonar
sonar.host.url=http://localhost:9000
sonar.jdbc.driver=org.postgresql.Driver
sonar.projectKey=Tekla:VSSonarQubeExtension
sonar.projectName=VSSonarQubeExtension
sonar.visualstudio.solution=VSSonarQubeExtension2013.sln
sonar.projectVersion=Work
sonar.dotnet.key.generation.strategy=safe
sonar.visualstudio.enable=false
sonar.scm.enabled=true
sonar.scm.url=scm:git:http://stash/scm/ts/structures
sonar.sourceEncoding=UTF-8
sonar.sources=.
sonar.visualstudio.outputPaths=BuildDrop/vs13,BuildDrop/vs13/StandAlone
sonar.cs.fxcop.directories=./BuildDrop/vs13
sonar.fs.fxcop.assembly=./BuildDrop/vs13/DifferenceEngine.dll,./BuildDrop/vs13/VSSonarQubeCmdExecutor.dll,./BuildDrop/vs13/SonarLocalAnalyser.dll,./BuildDrop/vs13/SonarRestService.dll,./BuildDrop/vs13/VSSonarExtensionMetroVs2013.dll,./BuildDrop/vs13/VSSonarExtensionUi.dll,./BuildDrop/vs13/VSSonarPlugins.dll
sonar.cs.opencover.reportsPaths=*.coverage.xml
sonar.fs.opencover.reportsPaths=*.coverage.xml
sonar.fs.opencover.reportsPaths=*.coverage.xml
sonar.cs.nunit.reportsPaths=*.unittest.report.xml
sonar.stylecop.projectFilePath=./VSSonarQubeExtension2013.sln
sonar.resharper.solutionFile=VSSonarQubeExtension2013.sln
sonar.fxcop.installDirectory=C:/Tekla/buildtools/FxCop/FxCopCmd.exe
sonar.cs.fxcop.fxCopCmdPath=c:/Tekla/BuildTools/FxCop/FxCopCmd.exe
sonar.resharper.inspectCodePath=c:/Tekla/BuildTools/resharpercli/inspectcode.exe
# exclusions of folders and files
sonar.exclusions=file:**/**/test/**, \n\
**/Annotations.cs, \n\
ObjDrop/**, \n\
*.unittest.report.xml, \n\
*.coverage.xml, \n\
**/*.unittest.report.xml, \n\
**/*.coverage.xml, \n\
BuildDrop/**, \n\
packages/**, \n\
msbuild/**, \n\
references/**, \n\
sampleProjects/**, \n\
**/**/Icons.xaml, \n\
**/obj/Debug/**, \n\
**/obj/Release/**, \n\
**/obj/x86/Debug/**, \n\
**/obj/x64/Debug/**, \n\
**/obj/x86/Release/**, \n\
**/obj/x64/Release/**, \n\
**/bin/**, \n\
**/bin/Debug/**, \n\
**/bin/Release/**, \n\
**/bin/x86/Debug/**, \n\
**/bin/x64/Debug/**, \n\
**/bin/x86/Release/**, \n\
**/bin/x64/Release/**, \n\
Test/**, \n\
References/**, \n\
DifferenceEngine/**, \n\
DiffCalc/**, \n\
VSSonarQubeExtensionMetro/externalAnalysers/**
sonar.test.inclusions=file:**/**/*.Test/**