Skip to content

Commit

Permalink
Upped version & fixed up README
Browse files Browse the repository at this point in the history
  • Loading branch information
bennor committed Jul 14, 2015
1 parent b7f8ab5 commit a47281e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
4 changes: 2 additions & 2 deletions AutoT4/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]



9 changes: 8 additions & 1 deletion AutoT4/ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
Version 1.1.0
Version 1.2.0
=============
* Added option to run templates before or after build (or not at all).
* Added AutoT4 section to options dialog so you can choose when to run at a global level.

Thanks to https://github.com/CosminLazar and https://github.com/malylemire1 for their help on this.

Version 1.1.0
=============
* Added ability to exclude templates from automatic build via Properties window
* Added Visual Studio 2015 support
Expand Down
2 changes: 1 addition & 1 deletion AutoT4/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="3fe81b73-39c9-4e39-8742-8e3fc01493bd" Version="1.1.0" Language="en-US" Publisher="Bennor McCarthy" />
<Identity Id="3fe81b73-39c9-4e39-8742-8e3fc01493bd" Version="1.2.0" Language="en-US" Publisher="Bennor McCarthy" />
<DisplayName>AutoT4</DisplayName>
<Description xml:space="preserve">A zero-configuration extension for Visual Studio 2012+ which automatically runs your T4 templates at build time.</Description>
<MoreInfo>https://github.com/bennor/AutoT4</MoreInfo>
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ This is a Visual Studio 2012+ extension which automatically triggers all T4 temp

Just build and install the template using the VSIX file, [grab it from the Visual Studio gallery](http://visualstudiogallery.msdn.microsoft.com/84e6f033-6da3-4641-a058-12feef0a33b9) or **do it the easy way** and use the 'Extension & Updates' manager in Visual Studio 2012+.

# Disabling individual templates
# Configuration

By default, the template will run all of your T4 templates on build. If you want to turn off individual templates, you can do this by setting **Run on build** to `false` in the _Properties window_ for any `.tt` file in your solution.
By default, the extension will run all of your T4 templates on build. If that's what you want, great -- **zero configuration required**.

If you want to customize the behaviour, you have two options:

* Change the default behaviour from the _AutoT4_ section of the Visual Studio options dialog.
* Override the default behaviour for a specific template by changing the **Run on build** setting in the _Properties window_ for any `.tt` file in your solution. Whatever you specify here will take precedence over the default in the options dialog (unless you select "Default").

0 comments on commit a47281e

Please sign in to comment.