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

before.Main.sln.targets « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a29225ca4200b39cc5d7e24c126e188db22ecec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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>
		<When Condition="'$(Configuration)'==''">
			<Choose>
				<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>
		</When>
	</Choose>
</Project>