mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
13 lines
171 B
C#
13 lines
171 B
C#
namespace Microsoft.Zune.Configuration
|
|
{
|
|
public class VersionInfo
|
|
{
|
|
public static string BuildNumber =>
|
|
#if ZUNE_5
|
|
"5.0.0000.0";
|
|
#else
|
|
"4.8.2345.0";
|
|
#endif
|
|
}
|
|
}
|