Skip to content

Commit

Permalink
Remove some old things
Browse files Browse the repository at this point in the history
  • Loading branch information
Redth committed May 8, 2023
1 parent 95669b3 commit bd280a4
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 353 deletions.
319 changes: 0 additions & 319 deletions MauiCheck/AcquirePackagesCommand.cs

This file was deleted.

23 changes: 0 additions & 23 deletions MauiCheck/AcquirePackagesSettings.cs

This file was deleted.

11 changes: 0 additions & 11 deletions MauiCheck/ToolInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,6 @@ public static bool Validate(Manifest.Manifest manifest)
return false;
}

var minSupportedDotNetSdkVersion = Manifest.DotNetSdk.Version6Preview7;

// Check that we aren't on a manifest that wants too old of dotnet6
if (manifest?.Check?.DotNet?.Sdks?.Any(dnsdk =>
NuGetVersion.TryParse(dnsdk.Version, out var dnsdkVersion) && dnsdkVersion < minSupportedDotNetSdkVersion) ?? false)
{
Console.WriteLine();
AnsiConsole.MarkupLine($"[bold red]{Icon.Error} This version of the tool is incompatible with installing an older version of .NET 6[/]");
return false;
}

return true;
}

Expand Down

0 comments on commit bd280a4

Please sign in to comment.