Skip to content

Commit

Permalink
Fixed a fix of a bug in ReflectionUtility.GetAssemblyInformation().
Browse files Browse the repository at this point in the history
  • Loading branch information
GregaMohorko committed Jan 31, 2018
1 parent 176290b commit 2c9c7d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/GM.Utility/GM.Utility/GM.Utility.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>GM.StrongNameKey.snk</AssemblyOriginatorKeyFile>
<Version>1.2.0.1</Version>
<Version>1.2.0.2</Version>
<Title>GM.Utility</Title>
<Authors>Grega Mohorko</Authors>
<Company>Grega Mohorko</Company>
Expand All @@ -17,8 +17,8 @@
<Copyright>Copyright © Grega Mohorko 2018</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReleaseNotes>Fixed a bug in ReflectionUtility.GetAssemblyInformation().</PackageReleaseNotes>
<AssemblyVersion>1.2.0.1</AssemblyVersion>
<FileVersion>1.2.0.1</FileVersion>
<AssemblyVersion>1.2.0.2</AssemblyVersion>
<FileVersion>1.2.0.2</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
2 changes: 1 addition & 1 deletion src/GM.Utility/GM.Utility/ReflectionUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public static AssemblyInformation GetAssemblyInformation(this Assembly assembly)
}
Version version = null;
if(versionS != null) {
Version.Parse(versionS);
version=Version.Parse(versionS);
}

return new AssemblyInformation(title, description, company, product, copyright, trademark, version);
Expand Down

0 comments on commit 2c9c7d7

Please sign in to comment.