Skip to content

Commit

Permalink
Approve changes
Browse files Browse the repository at this point in the history
  • Loading branch information
GeertvanHorrik committed Dec 23, 2024
1 parent b4f3f5c commit b9d0230
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ namespace Orc.NuGetExplorer
{
public const string CacheClearEndedSuccessful = "NuGet cache cleared";
public const string CacheClearFailed = "Fatal error during cache clearing";
public const string CachedClearEndedWithError = "NuGet cache cleared with some errors. It means some cached files may kept on cach" +
"e folder";
public const string CachedClearEndedWithError = ("NuGet cache cleared with some errors. It means some cached files may kept on cach" +
"e folder");
public const string PackageParserInvalidIdentity = "parameter doesn\'t contain valid package identity";
public const string PackageParserInvalidVersion = "parameter doesn\'t contain valid package version";
}
Expand Down Expand Up @@ -219,8 +219,8 @@ namespace Orc.NuGetExplorer
{
string ContentPath { get; }
string Framework { get; }
[System.Obsolete("Use `IgnoreMissingDependencies` instead. Will be treated as an error from version" +
" 6.0.0. Will be removed in version 6.0.0.", false)]
[System.Obsolete(("Use `IgnoreMissingDependencies` instead. Will be treated as an error from version" +
" 6.0.0. Will be removed in version 6.0.0."), false)]
bool IgnoreDependencies { get; }
bool IgnoreMissingDependencies { get; }
string Name { get; }
Expand Down Expand Up @@ -867,8 +867,8 @@ namespace Orc.NuGetExplorer.Management
public DestFolder(string destinationFolder, Orc.NuGetExplorer.IDefaultNuGetFramework defaultFramework) { }
public string ContentPath { get; }
public string Framework { get; }
[System.Obsolete("Use `IgnoreMissingDependencies` instead. Will be treated as an error from version" +
" 6.0.0. Will be removed in version 6.0.0.", false)]
[System.Obsolete(("Use `IgnoreMissingDependencies` instead. Will be treated as an error from version" +
" 6.0.0. Will be removed in version 6.0.0."), false)]
public bool IgnoreDependencies { get; }
public bool IgnoreMissingDependencies { get; }
public string Name { get; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ namespace Orc.NuGetExplorer
}
public class PackageMetadataMediaDownloadService : Orc.NuGetExplorer.IImageResolveService, Orc.NuGetExplorer.IPackageMetadataMediaDownloadService
{
public const string DefaultIconUri = "pack://application:,,,/Orc.NuGetExplorer.Xaml;component/Resources/Images/default-" +
"package-icon.png";
public const string DefaultIconUri = ("pack://application:,,,/Orc.NuGetExplorer.Xaml;component/Resources/Images/default-" +
"package-icon.png");
public PackageMetadataMediaDownloadService(Orc.NuGetExplorer.Providers.IApplicationCacheProvider appCacheProvider) { }
public System.Threading.Tasks.Task DownloadMediaForMetadataAsync(NuGet.Protocol.Core.Types.IPackageSearchMetadata packageMetadata) { }
public System.Windows.Media.ImageSource ResolveImageFromUri(System.Uri uri) { }
Expand Down

0 comments on commit b9d0230

Please sign in to comment.