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: 100a95d8d12c8e12378362c40785c10bdf774854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>