mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-02 16:32:07 +01:00
fixed plugin assembly downloads as well as debug/release detection with nuget assemblies
This commit is contained in:
@@ -9,6 +9,20 @@ namespace MediaBrowser.Server.Implementations
|
||||
/// </summary>
|
||||
public class ServerApplicationPaths : BaseApplicationPaths, IServerApplicationPaths
|
||||
{
|
||||
#if (DEBUG)
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ServerApplicationPaths" /> class.
|
||||
/// </summary>
|
||||
public ServerApplicationPaths()
|
||||
: base(true)
|
||||
{
|
||||
}
|
||||
#elif (RELEASE)
|
||||
public ServerApplicationPaths()
|
||||
: base(false)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
/// <summary>
|
||||
/// The _root folder path
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user