Created
March 10, 2011 12:20
-
-
Save hotgazpacho/864022 to your computer and use it in GitHub Desktop.
Transform T4 templates outside Visual Studio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Target Name="TransformT4Templates"> | |
| <ItemGroup> | |
| <T4Templates Include="..\**\*.tt" /> | |
| </ItemGroup> | |
| <Exec WorkingDirectory="$(CommonProgramFiles)\Microsoft Shared\TextTemplating\1.2" | |
| Command="TextTransform "%(T4Templates.FullPath)"" /> | |
| </Target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment