forked from rsdn/nemerle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ncc.nproj
65 lines (65 loc) · 3.13 KB
/
ncc.nproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Nemerle Condition=" '$(Nemerle)' == '' And ('$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5')">$(MSBuildProjectDirectory)\boot</Nemerle>
<Nemerle Condition=" '$(Nemerle)' == '' And '$(TargetFrameworkVersion)' == 'v4.0'">$(MSBuildProjectDirectory)\boot-4.0</Nemerle>
<Nemerle Condition=" '$(Nemerle)' == '' And '$(TargetFrameworkVersion)' == 'v4.5'">$(MSBuildProjectDirectory)\boot-4.0</Nemerle>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{0c558e38-7df9-4a68-9015-b316dd59c0cb}</ProjectGuid>
<OutputType>Exe</OutputType>
<AssemblyName Condition="'$(AssemblyName)' == ''">ncc</AssemblyName>
<TargetPlatform>v2</TargetPlatform>
<DefineConstants>RUNTIME_MS</DefineConstants>
<DefineConstants>_stage3</DefineConstants>
<DefineConstants Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">NET_4_0</DefineConstants>
<WarningLevel>4</WarningLevel>
<NoStdLib>true</NoStdLib>
<!--NoStdMacros>true</NoStdMacros-->
<GreedyReferences>false</GreedyReferences>
<KeyOriginatorFile Condition="'$(NKeysDir)' == ''">misc\keys\Nemerle.Compiler.snk</KeyOriginatorFile>
<KeyOriginatorFile Condition="'$(NKeysDir)' != ''">$(NKeysDir)\Nemerle.Compiler.snk</KeyOriginatorFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<!-- <DocumentationFile>$(OutputPath)\ncc.xml</DocumentationFile> -->
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<DebugSymbols>false</DebugSymbols>
<DebugType>None</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DocumentationFile>$(OutputPath)\ncc.xml</DocumentationFile>
</PropertyGroup>
<Import Project="$(Nemerle)\Nemerle.MSBuild.targets" />
<ItemGroup>
<Folder Include="ncc" />
<Compile Include="ncc\misc\AssemblyInfo.n">
<Link>ncc\AssemblyInfo.n</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Include="ncc\main.n">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Nemerle.Compiler.nproj">
<Name>Nemerle.Compiler</Name>
<Project>{0c558e36-7df9-4a68-9015-b316dd59c0cb}</Project>
<Private>True</Private>
</ProjectReference>
<ProjectReference Include="Nemerle.nproj">
<Name>Nemerle</Name>
<Project>{0c558e35-7df9-4a68-9015-b316dd59c0cb}</Project>
<Private>True</Private>
</ProjectReference>
</ItemGroup>
</Project>