forked from icsharpcode/ILSpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Latest version check added (disabled). (Temp) Fixed DirectoryExists f…
…or ReferencePaths (see natemcmaster/CommandLineUtils#536)
- Loading branch information
1 parent
8e3c1af
commit bf91f46
Showing
3 changed files
with
60 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
using System; | ||
using System.Linq; | ||
using System.Reflection; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
|
||
using NuGet.Common; | ||
using NuGet.Protocol; | ||
using NuGet.Protocol.Core.Types; | ||
using NuGet.Versioning; | ||
|
||
namespace ICSharpCode.ILSpyCmd | ||
{ | ||
// Idea from https://github.com/ErikEJ/EFCorePowerTools/blob/master/src/GUI/efcpt/Services/PackageService.cs | ||
internal static class DotNetToolUpdateChecker | ||
{ | ||
static NuGetVersion CurrentPackageVersion() | ||
{ | ||
return new NuGetVersion(Assembly.GetEntryAssembly()!.GetCustomAttribute<AssemblyInformationalVersionAttribute>()! | ||
.InformationalVersion); | ||
} | ||
|
||
public static async Task CheckForPackageUpdateAsync(string packageId) | ||
{ | ||
try | ||
{ | ||
using var cache = new SourceCacheContext(); | ||
var repository = Repository.Factory.GetCoreV3("https://api.nuget.org/v3/index.json"); | ||
var resource = await repository.GetResourceAsync<FindPackageByIdResource>().ConfigureAwait(false); | ||
|
||
var versions = await resource.GetAllVersionsAsync( | ||
packageId, | ||
cache, | ||
new NullLogger(), | ||
CancellationToken.None).ConfigureAwait(false); | ||
|
||
var latestVersion = versions.Where(v => v.Release == "").MaxBy(v => v); | ||
if (latestVersion > CurrentPackageVersion()) | ||
{ | ||
Console.WriteLine("You are not using the latest version of the tool, please update."); | ||
Console.WriteLine($"Latest version is '{latestVersion}'"); | ||
} | ||
} | ||
#pragma warning disable RCS1075 // Avoid empty catch clause that catches System.Exception. | ||
catch (Exception) | ||
{ | ||
} | ||
#pragma warning restore RCS1075 // Avoid empty catch clause that catches System.Exception. | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters