Example #1
0
 def clean(self):
     for path in _plano.find(self.work_dir, "*.csproj"):
         project_dir = _plano.get_parent_dir(path)
         _plano.remove(_join(self.work_dir, project_dir, "bin"))
         _plano.remove(_join(self.work_dir, project_dir, "obj"))
Example #2
0
 def clean(self):
     with _working_dir(self.work_dir):
         for path in _plano.find("*.pyc"):
             _plano.remove(path)
Example #3
0
    def build(self):
        super(_AmqpNetLite, self).build()

        for path in _plano.find(self.work_dir, "*.csproj"):
            project_dir = _plano.get_parent_dir(path)
            _call("dotnet build {0}", _join(self.work_dir, project_dir))