-
Notifications
You must be signed in to change notification settings - Fork 89
/
Nemerle.Compiler.nproj
142 lines (142 loc) · 6.25 KB
/
Nemerle.Compiler.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask TaskName="MSBuild.Community.Tasks.TemplateFile" AssemblyFile="$(MSBuildProjectDirectory)\ExternalDependences\MSBuild.Community.Tasks.dll" />
<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>
<Nemerle Condition=" '$(Nemerle)' == '' And '$(TargetFrameworkVersion)' == 'v4.5.1'">$(MSBuildProjectDirectory)\boot-4.0</Nemerle>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{0c558e36-7df9-4a68-9015-b316dd59c0cb}</ProjectGuid>
<OutputType>Library</OutputType>
<AssemblyName>Nemerle.Compiler</AssemblyName>
<TargetPlatform>v2</TargetPlatform>
<DefineConstants>RUNTIME_MS</DefineConstants>
<DefineConstants>_stage3</DefineConstants>
<DefineConstants Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'">NET_4_0</DefineConstants>
<WarningLevel>4</WarningLevel>
<NoStdLib>true</NoStdLib>
<EnabledWarnings>10006</EnabledWarnings>
<!--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>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<!-- <DocumentationFile>$(OutputPath)\Nemerle.Compiler.xml</DocumentationFile> -->
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<DebugSymbols>false</DebugSymbols>
<DebugType>None</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<DocumentationFile>$(OutputPath)\Nemerle.Compiler.xml</DocumentationFile>
</PropertyGroup>
<Import Project="$(Nemerle)\Nemerle.MSBuild.targets" />
<ItemGroup>
<Folder Include="ncc" />
<Folder Include="ncc\codedom" />
<Folder Include="ncc\completion" />
<Folder Include="ncc\external" />
<Folder Include="ncc\external\ExternalMemberInfo" />
<Folder Include="ncc\external\ExternalTypeInfo" />
<Folder Include="ncc\generation" />
<Folder Include="ncc\hierarchy" />
<Folder Include="ncc\misc" />
<Folder Include="ncc\optimization" />
<Folder Include="ncc\parsing" />
<Folder Include="ncc\testsuite" />
<Folder Include="ncc\testsuite\negative" />
<Folder Include="ncc\testsuite\positive" />
<Folder Include="ncc\testsuite\todo" />
<Folder Include="ncc\typing" />
<Folder Include="ncc\completion" />
<Folder Include="ncc\typing" />
</ItemGroup>
<ItemGroup>
<Compile Include="ncc\CompilationOptions.n">
<SubType>Code</SubType>
</Compile>
<Compile Include="ncc\passes.n">
<SubType>Code</SubType>
</Compile>
<!-- Fixme: If move next line done in the file we take TypeLosrExcepton("Located")! -->
<Compile Include="ncc\parsing\*.n">
<SubType>Code</SubType>
</Compile>
<Compile Include="ncc\codedom\*.n">
<SubType>Code</SubType>
</Compile>
<Compile Include="ncc\CompilerMessage\*.n">
<SubType>Code</SubType>
</Compile>
<Compile Include="ncc\completion\*.n">
<SubType>Code</SubType>
</Compile>
<Compile Include="ncc\external\*.n">
<SubType>Code</SubType>
</Compile>
<Compile Include="ncc\external\ExternalMemberInfo\*.n">
<SubType>Code</SubType>
</Compile>
<Compile Include="ncc\external\ExternalTypeInfo\*.n">
<SubType>Code</SubType>
</Compile>
<Compile Include="ncc\generation\*.n">
<SubType>Code</SubType>
</Compile>
<Compile Include="ncc\hierarchy\*.n">
<SubType>Code</SubType>
</Compile>
<Compile Include="ncc\misc\*.n">
<SubType>Code</SubType>
</Compile>
<Compile Include="ncc\optimization\*.n">
<SubType>Code</SubType>
</Compile>
<Compile Include="ncc\typing\*.n">
<SubType>Code</SubType>
</Compile>
<Content Include="ncc\testsuite\negative\*.n">
<SubType>None</SubType>
</Content>
<Content Include="ncc\testsuite\positive\*.n">
<SubType>None</SubType>
</Content>
<Content Include="ncc\testsuite\todo\*.n">
<SubType>None</SubType>
</Content>
</ItemGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Nemerle.nproj">
<Name>Nemerle</Name>
<Project>{0c558e35-7df9-4a68-9015-b316dd59c0cb}</Project>
<Private>True</Private>
</ProjectReference>
</ItemGroup>
<Target Name="AfterBuild">
<GetAssemblyIdentity AssemblyFiles="$(OutputPath)\$(AssemblyName).dll">
<Output TaskParameter="Assemblies" ItemName="OutputAssemblyIdentity" />
</GetAssemblyIdentity>
<ItemGroup>
<Token Include="ver">
<ReplacementValue>%(OutputAssemblyIdentity.Version)</ReplacementValue>
</Token>
</ItemGroup>
<TemplateFile Template="ncc\policy.1.2.$(AssemblyName).config.template" OutputFilename="$(OutputPath)\policy.1.2.$(AssemblyName).config" Tokens="@(Token)" />
<AL ToolPath="$(SDKBin)" LinkResources="$(OutputPath)\policy.1.2.$(AssemblyName).config" OutputAssembly="$(OutputPath)\policy.1.2.$(AssemblyName).dll" KeyFile="$(KeyOriginatorFile)" Platform="$(Platform)" />
</Target>
</Project>