mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-18 12:46:40 +00:00
Fix regression on PR builds version number since new release system
This commit is contained in:
parent
f3bfd799e1
commit
26019c7d06
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,6 @@
|
||||||
namespace Ryujinx.Common
|
using System.Reflection;
|
||||||
|
|
||||||
|
namespace Ryujinx.Common
|
||||||
{
|
{
|
||||||
// DO NOT EDIT, filled by CI
|
// DO NOT EDIT, filled by CI
|
||||||
public static class ReleaseInformations
|
public static class ReleaseInformations
|
||||||
|
@ -25,7 +27,7 @@
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return "1.0.0-dirty";
|
return Assembly.GetEntryAssembly().GetCustomAttribute<AssemblyInformationalVersionAttribute>().InformationalVersion;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue