Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@veritas-vos-liberabit.com>2013-01-18 17:35:16 +0400
committerAtsushi Eno <atsushieno@veritas-vos-liberabit.com>2013-01-18 17:35:16 +0400
commit23449f1274560e9fe6b7a9b295ba8d46cfc2ad11 (patch)
tree47c6c9cc889390fa33002926f293922505ee9aa8
parent734892d5c71447292a173880b18892b25717ed6a (diff)
fix build: maybe csc allows this missing "System.", but mcs doesn't.
-rw-r--r--Rx.NET/Tests.System.Reactive/Utils.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rx.NET/Tests.System.Reactive/Utils.cs b/Rx.NET/Tests.System.Reactive/Utils.cs
index bf44418..c7b099b 100644
--- a/Rx.NET/Tests.System.Reactive/Utils.cs
+++ b/Rx.NET/Tests.System.Reactive/Utils.cs
@@ -25,7 +25,7 @@ namespace ReactiveTests
// There is no accessible file system inside android application.
return System.Environment.GetFolderPath(System.Environment.SpecialFolder.LocalApplicationData);
#else
- return AppDomain.CurrentDomain.BaseDirectory;
+ return System.AppDomain.CurrentDomain.BaseDirectory;
#endif
}
}