~ubuntu-branches/ubuntu/saucy/monodevelop/saucy

« back to all changes in this revision

Viewing changes to external/mono-tools/gendarme/rules/Gendarme.Rules.Maintainability/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2012-05-27 18:08:20 UTC
  • mfrom: (1.8.5) (1.5.8 sid)
  • Revision ID: package-import@ubuntu.com-20120527180820-f1ub6lhg0s50wci1
Tags: 3.0.2+dfsg-3
* [fcecfe7] Fix monodevelop-core-addins.pc.in to point to actual 
  installed location of assemblies.
* [26e1a07] DebSrc 3.0 does not support Quilt's -p parameter, so 
  manually adjust the path in the patch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include ../common.make
 
2
 
 
3
rules_sources =  \
 
4
        AvoidAlwaysNullFieldRule.cs \
 
5
        AvoidComplexMethodsRule.cs \
 
6
        AvoidDeepInheritanceTreeRule.cs \
 
7
        AvoidLackOfCohesionOfMethodsRule.cs \
 
8
        AvoidUnnecessarySpecializationRule.cs \
 
9
        ConsiderUsingStopwatchRule.cs \
 
10
        PreferStringIsNullOrEmptyRule.cs \
 
11
        RemoveDependenceOnObsoleteCodeRule.cs \
 
12
        ReviewMisleadingFieldNamesRule.cs \
 
13
        VariableNamesShouldNotMatchFieldNamesRule.cs
 
14
 
 
15
EXTRA_TESTS_OPTIONS += -r:System.Runtime.Serialization.dll
 
16
 
 
17
tests_sources = \
 
18
        AvoidAlwaysNullFieldTest.cs \
 
19
        AvoidComplexMethodsTest.cs \
 
20
        AvoidDeepInheritanceTreeTest.cs \
 
21
        AvoidLackOfCohesionOfMethodsTest.cs \
 
22
        AvoidUnnecessarySpecializationTest.cs \
 
23
        ConsiderUsingStopwatchTest.cs \
 
24
        PreferStringIsNullOrEmptyTest.cs \
 
25
        RemoveDependenceOnObsoleteCodeTest.cs \
 
26
        ReviewMisleadingFieldNamesTest.cs \
 
27
        VariableNamesShouldNotMatchFieldNamesTest.cs