Files
ZuneShell.dll/ZuneDBApi/Microsoft/Zune/Configuration/VersionInfo.cs
T
2021-11-22 00:09:47 -06:00

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
}
}