Note: packages higher up in this list are more likely to actually work as they have been reported to be working with Umbraco version @(properVersion.ToString(2)).x.
-
-
-
-
- @{
- var vs = new List();
- foreach (var project in projects.OrderByDescending(x => x.CreateDate))
- {
- foreach (var version in project.CompatibleVersions.Where(version => vs.Contains(version) == false))
- {
- vs.Add(version);
- }
- }
- }
-
- @foreach (var v in vs.OrderBy(x => x).Where(x => x.ToString(CultureInfo.InvariantCulture).StartsWith("3") == false && x.ToString(CultureInfo.InvariantCulture).StartsWith("5") == false).Skip(6))
- {
- var itemProperVersion = GetProperVersion(v.ToString(CultureInfo.InvariantCulture)).ToString(2);
- var currentProperVersion = properVersion.ToString(2);
-
-