eclipse / Xpect

This repository has been rewritten to move to the Eclipse Foundation. Find the old history here: https://github.com/TypeFox/Xpect
http://www.xpect-tests.org/
Eclipse Public License 2.0
30 stars 28 forks source link

IGenerator of the tested language not running if file extension is .xt #178

Open cdietrich opened 9 years ago

cdietrich commented 9 years ago

The Generator of the tested language is not running if the file extension is xt.

Does not work:

   Workspace {
        JavaProject {
            SrcFolder {
                ThisFile {}
            }
            SrcFolder "src-gen" {

            }
        }
   }

Does Work

   Workspace {
        JavaProject {
            SrcFolder {
                ThisFile "test.dmodel" {from="test.dmodel.xt"}
            }
            SrcFolder "src-gen" {

            }
        }
   }
cdietrich commented 9 years ago

The Auto Build is Disabled as well.