diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-16 09:08:15 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-16 09:08:15 -0800 |
commit | 1273af123178d98b28ad33425facaa85cc1440e6 (patch) | |
tree | 33d6864e653da2ea68970d7af27e28e4fce04025 | |
parent | 8c0bcde31654fc4a0efff526b37b8fc386175abb (diff) | |
download | DotNetOpenAuth-1273af123178d98b28ad33425facaa85cc1440e6.zip DotNetOpenAuth-1273af123178d98b28ad33425facaa85cc1440e6.tar.gz DotNetOpenAuth-1273af123178d98b28ad33425facaa85cc1440e6.tar.bz2 |
Added missing .ashx file from list of files to parse for tokens.
This fixes an error that shows up in the generated project template.
-rw-r--r-- | build.proj | 1 | ||||
-rw-r--r-- | lib/DotNetOpenAuth.BuildTasks.targets | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -170,6 +170,7 @@ or '%(Extension)' == '.Master' or '%(Extension)' == '.aspx' or '%(Extension)' == '.asax' + or '%(Extension)' == '.ashx' "> <BeforeTokens>%(RecursiveDir)</BeforeTokens> <AfterTokens>$safeprojectname$</AfterTokens> diff --git a/lib/DotNetOpenAuth.BuildTasks.targets b/lib/DotNetOpenAuth.BuildTasks.targets index 27dbd10..b23542b 100644 --- a/lib/DotNetOpenAuth.BuildTasks.targets +++ b/lib/DotNetOpenAuth.BuildTasks.targets @@ -4,7 +4,7 @@ <ProjectRoot Condition="'$(ProjectRoot)' == ''">$(MSBuildProjectDirectory)\..\..</ProjectRoot> </PropertyGroup> <ItemGroup> - <VsTemplateParameterReplaceExtensions Include=".cs;.csproj;.sql;.config;.Master;.aspx;.vb;.asax" /> + <VsTemplateParameterReplaceExtensions Include=".cs;.csproj;.sql;.config;.Master;.aspx;.vb;.asax;.ashx" /> <VsTemplateProjectItemTypes Include="Compile;EmbeddedResource;EntityDeploy;Content;None" /> </ItemGroup> |