Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Commit

Permalink
Include directory in zip file
Browse files Browse the repository at this point in the history
  • Loading branch information
taschmidt committed Jul 3, 2013
1 parent 5eadd1f commit 539a223
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.number
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0.9
1.0.0.11
4 changes: 2 additions & 2 deletions default.build
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

<target name="compile" depends="common-assembly-info" description="compiles the source code">
<msbuild project="src\\ReSharper-Mustache-Plugin.sln" target="build">
<property name="OutDir" value="${out.dir}"/>
<property name="OutDir" value="${out.dir}\\Mustache-plugin"/>
<property name="Configuration" value="${build.configuration}" />
<property name="Platform" value="Any CPU" />
</msbuild>
Expand All @@ -51,7 +51,7 @@
<property name="zip.filename" value="${build.dir}ReSharper.Mustache.Plugin-v${version}.zip"/>
<zip zipfile="${zip.filename}">
<fileset basedir="${out.dir}">
<include name="*.*" />
<include name="**" />
</fileset>
</zip>
</target>
Expand Down
6 changes: 3 additions & 3 deletions src/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
// </auto-generated>
//------------------------------------------------------------------------------

[assembly: AssemblyVersionAttribute("1.0.0.9")]
[assembly: AssemblyFileVersionAttribute("1.0.0.9")]
[assembly: AssemblyVersionAttribute("1.0.0.11")]
[assembly: AssemblyFileVersionAttribute("1.0.0.11")]
[assembly: AssemblyCopyrightAttribute("Copyright © 2013 Tim Schmidt")]
[assembly: AssemblyCompanyAttribute("Tim Schmidt")]
[assembly: AssemblyProductAttribute("ReSharper Mustache plugin")]
[assembly: AssemblyDescriptionAttribute("07/02/2013 22:35:18")]
[assembly: AssemblyDescriptionAttribute("07/02/2013 22:44:02")]

0 comments on commit 539a223

Please sign in to comment.