mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	* Add analyzers to MediaBrowser.XbmcMetadata * Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata * Add analyzers to MediaBrowser.WebDashboard * Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard * Disable SA1600 in favor of CS1591
		
			
				
	
	
		
			29 lines
		
	
	
		
			854 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			854 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| namespace MediaBrowser.Model.IO
 | |
| {
 | |
|     public interface IShortcutHandler
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets the extension.
 | |
|         /// </summary>
 | |
|         /// <value>The extension.</value>
 | |
|         string Extension { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Resolves the specified shortcut path.
 | |
|         /// </summary>
 | |
|         /// <param name="shortcutPath">The shortcut path.</param>
 | |
|         /// <returns>System.String.</returns>
 | |
|         string Resolve(string shortcutPath);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Creates the specified shortcut path.
 | |
|         /// </summary>
 | |
|         /// <param name="shortcutPath">The shortcut path.</param>
 | |
|         /// <param name="targetPath">The target path.</param>
 | |
|         /// <returns>System.String.</returns>
 | |
|         void Create(string shortcutPath, string targetPath);
 | |
|     }
 | |
| }
 |