Skip to content

Commit

Permalink
[CF] fixed bug in app config
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaseFlorell committed Jan 25, 2016
1 parent 7a8bf6f commit 2cf8286
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Downsize/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<configuration>
<configSections>
<section name="ImageConfigSection"
type="ImageScaler.ImageConfigSection,ImageScaler,Culture=neutral,PublicKeyToken=null" />
type="Downsize.ImageConfigSection,Downsize,Culture=neutral,PublicKeyToken=null" />
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
Expand All @@ -21,7 +21,7 @@
-->
<add key="ldpi" pathFormat="{0}\Android\drawable-ldpi\{1}" scale="4" />
<add key="mdpi" pathFormat="{0}\Android\drawable-mdpi\{1}" scale="3" />
<add key="hdpi" pathFormat="{0}\Android\dBrawable-hdpi\{1}" scale="2" />
<add key="hdpi" pathFormat="{0}\Android\drawable-hdpi\{1}" scale="2" />
<add key="xhdpi" pathFormat="{0}\Android\drawable-xhdpi\{1}" scale="1.5" />
<add key="xxhdpi" pathFormat="{0}\Android\drawable-xxhdpi\{1}" scale="1" />
<add key="iOS@1x" pathFormat="{0}\iOS\{1}" scale="3" />
Expand Down
4 changes: 2 additions & 2 deletions src/Downsize/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("0.1.0.0")]
[assembly: AssemblyFileVersion("0.1.0.0")]

0 comments on commit 2cf8286

Please sign in to comment.