mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
upgraded to autofac 3. created nancy only mode for nzbdrone.exe /n
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
namespace NzbDrone.Common.EnsureThat
|
||||
{
|
||||
internal static class StringExtensions
|
||||
{
|
||||
internal static string Inject(this string format, params object[] formattingArgs)
|
||||
{
|
||||
return string.Format(format, formattingArgs);
|
||||
}
|
||||
|
||||
internal static string Inject(this string format, params string[] formattingArgs)
|
||||
{
|
||||
return string.Format(format, formattingArgs);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user