#1460 The assembly versioning seems to work correctly now

This commit is contained in:
Jamie.Rees 2017-09-01 08:52:40 +01:00
parent 2535645a90
commit 85303626f0
3 changed files with 17 additions and 18 deletions

View file

@ -9,7 +9,7 @@ namespace Ombi.Helpers
Assembly.GetEntryAssembly().GetType()
.GetTypeInfo()
.Assembly
.GetCustomAttribute<AssemblyProductAttribute>()
.Product;
.GetCustomAttribute<AssemblyInformationalVersionAttribute>()
.InformationalVersion;
}
}