forked from rsdn/nemerle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tests.nproj
79 lines (79 loc) · 3.72 KB
/
Tests.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
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<NoStdLib>true</NoStdLib>
<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>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<Name>"Tests"</Name>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{8c500dec-8cb9-4e9d-8438-bdb64ad667a2}</ProjectGuid>
<OutputType>Exe</OutputType>
<DefineConstants Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">NET_4_0</DefineConstants>
<RootNamespace>Tests</RootNamespace>
<AssemblyName>Tests</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>false</DebugSymbols>
<DebugType>None</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath Condition="'$(NTestOutPath)' == ''">ncc\testsuite\</OutputPath>
<OutputPath Condition="'$(NTestOutPath)' != ''">$(NTestOutPath)</OutputPath>
<StartProgram>
</StartProgram>
<CmdArgs>-d:negative -p "-nowarn:10003 -def:RUNTIME_MS" -s > negative.results</CmdArgs>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath Condition="'$(NTestOutPath)' == ''">ncc\testsuite\</OutputPath>
<OutputPath Condition="'$(NTestOutPath)' != ''">$(NTestOutPath)</OutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<Name>System.Core</Name>
<AssemblyName>System.Core.dll</AssemblyName>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="$(Nemerle)\Nemerle.dll" />
<Reference Include="$(Nemerle)\Nemerle.Compiler.dll" />
<Reference Include="$(Nemerle)\Nemerle.Macros.dll" />
</ItemGroup>
<ItemGroup>
<Folder Include="ncc" />
<Folder Include="ncc\testsuite" />
</ItemGroup>
<ItemGroup>
<Compile Include="ncc\testsuite\test.n">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<Import Project="$(Nemerle)\Nemerle.MSBuild.targets" />
</Project>