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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/before.Main.sln.targets19
1 files changed, 19 insertions, 0 deletions
diff --git a/main/before.Main.sln.targets b/main/before.Main.sln.targets
new file mode 100644
index 0000000000..100a95d8d1
--- /dev/null
+++ b/main/before.Main.sln.targets
@@ -0,0 +1,19 @@
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+
+ <!--
+ Ensure that when a configuration is not provided, we use a good default
+ for the current OS.
+ -->
+ <Choose Condition="'$(Configuration)'==''">
+ <When Condition="'$(OS)'!='Unix'">
+ <PropertyGroup>
+ <Configuration>DebugWin32</Configuration>
+ </PropertyGroup>
+ </When>
+ <When Condition="Exists('/System/Library/Frameworks/CoreFoundation.framework')">
+ <PropertyGroup>
+ <Configuration>DebugMac</Configuration>
+ </PropertyGroup>
+ </When>
+ </Choose>
+</Project>