mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
added conditional compile for mono
This commit is contained in:
parent
00e2f225f8
commit
3ab04fd213
19 changed files with 40 additions and 57 deletions
|
@ -16,6 +16,11 @@ namespace NzbDrone.Core.Test.Framework
|
|||
[SetUp]
|
||||
public void CoreTestSetup()
|
||||
{
|
||||
|
||||
#if __MonoCS__
|
||||
throw new IgnoreException("SqlCe is not supported in mono.");
|
||||
#endif
|
||||
|
||||
if (NCrunch.Framework.NCrunchEnvironment.NCrunchIsResident())
|
||||
{
|
||||
_dbTemplateName = Path.Combine(Path.GetTempPath(), Path.GetTempFileName()) + ".sdf";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue