forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIronPythonTest.csproj
More file actions
91 lines (91 loc) · 3.74 KB
/
IronPythonTest.csproj
File metadata and controls
91 lines (91 loc) · 3.74 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<Import Project="$(ProjectDir)..\..\Build\Common.proj" />
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{B6B42537-07F8-4F6C-A99A-B155CAEB124E}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>IronPythonTest</RootNamespace>
<AssemblyName>IronPythonTest</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'FxCop|AnyCPU' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'v2Debug|AnyCPU' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'v2Release|AnyCPU' ">
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="AttrInjectorTest.cs" />
<Compile Include="Cases\CaseExecuter.cs" />
<Compile Include="Cases\CaseGenerator.cs" />
<Compile Include="ExtensionMethodTest.cs" />
<Compile Include="Cases\IronPythonCases.cs" />
<Compile Include="Cases\CPythonCases.cs" />
<Compile Include="LightExceptionTests.cs" />
<Compile Include="MemberOverloadTest.cs" />
<Compile Include="BinderTest.cs" />
<Compile Include="BindTest.cs" />
<Compile Include="ClrType.cs" />
<Compile Include="Cmplx.cs" />
<Compile Include="Conversions.cs" />
<Compile Include="DefaultParams.cs" />
<Compile Include="DelegateTest.cs" />
<Compile Include="DeTest.cs" />
<Compile Include="DynamicRegressions.cs" />
<Compile Include="MemberMappingTests.cs" />
<Compile Include="Stress\Engine.cs" />
<Compile Include="EngineTest.cs" />
<Compile Include="Enums.cs" />
<Compile Include="Events.cs" />
<Compile Include="ExceptionConverter.cs" />
<Compile Include="Exceptions.cs" />
<Compile Include="Explicit.cs" />
<Compile Include="GenMeth.cs" />
<Compile Include="Indexable.cs" />
<Compile Include="InheritTest.cs" />
<Compile Include="IntegerTest.cs" />
<Compile Include="LoadTest.cs" />
<Compile Include="IronMath.cs" />
<Compile Include="NestedClass.cs" />
<Compile Include="NullableTest.cs" />
<Compile Include="OperatorTest.cs" />
<Compile Include="ProtocolTest.cs" />
<Compile Include="StaticTest.cs" />
<Compile Include="StringDictionaryStorage.cs" />
<Compile Include="TestBuiltinModule.cs" />
<Compile Include="TypeDescriptor.cs" />
<Compile Include="Util\IniParser.cs" />
<Compile Include="Util\TestManifest.cs" />
<AppDesigner Include="Properties\" />
</ItemGroup>
<ItemGroup Condition=" '$(IsFullFramework)' == 'true' and '$(TargetFrameworkVersion)' != 'v3.5'">
<Reference Include="System.Xaml" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\IronPython\IronPython.csproj">
<Project>{95289EA9-5778-489D-AB48-F81F2CE2DA32}</Project>
<Name>IronPython</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Reference Include="nunitlite">
<HintPath>$(ReferenceDir)\NUnitLite.1.0.0\lib\$(ReferencedPlatform)\nunitlite.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Cases\IronPythonCasesManifest.ini" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Cases\AllCPythonCasesManifest.ini" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Cases\StandardCPythonCasesManifest.ini" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>