|
22 | 22 | </PropertyGroup> |
23 | 23 | <!--We can relax binding to platform because code references no any platform dependent assemblies--> |
24 | 24 | <!--This will allows to use any build of this assebly as a compile ref assebly--> |
25 | | -<!--<PropertyGroup Condition=" '$(Platform)' == 'x86'"> |
26 | | - <PlatformTarget>x86</PlatformTarget> |
27 | | - </PropertyGroup> |
28 | | - <PropertyGroup Condition=" '$(Platform)' == 'x64'"> |
29 | | - <PlatformTarget>x64</PlatformTarget> |
| 25 | +<!--<PropertyGroup Condition=" '$(Platform)' == 'x86'"> |
| 26 | + <PlatformTarget>x86</PlatformTarget> |
| 27 | + </PropertyGroup> |
| 28 | + <PropertyGroup Condition=" '$(Platform)' == 'x64'"> |
| 29 | + <PlatformTarget>x64</PlatformTarget> |
30 | 30 | </PropertyGroup>--> |
31 | 31 | <PropertyGroupCondition=" '$(Configuration)' == 'ReleaseMono'"> |
32 | 32 | <DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON2;PYTHON27;UCS4</DefineConstants> |
33 | 33 | <Optimize>true</Optimize> |
34 | 34 | <DebugType>pdbonly</DebugType> |
35 | 35 | </PropertyGroup> |
36 | 36 | <PropertyGroupCondition=" '$(Configuration)' == 'ReleaseMonoPY3'"> |
37 | | - <DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON3;PYTHON37;UCS4</DefineConstants> |
| 37 | + <DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON3;PYTHON37;UCS4</DefineConstants> |
38 | 38 | <Optimize>true</Optimize> |
39 | 39 | <DebugType>pdbonly</DebugType> |
40 | 40 | </PropertyGroup> |
|
46 | 46 | </PropertyGroup> |
47 | 47 | <PropertyGroupCondition=" '$(Configuration)' == 'DebugMonoPY3'"> |
48 | 48 | <DebugSymbols>true</DebugSymbols> |
49 | | - <DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON3;PYTHON37;UCS4;TRACE;DEBUG</DefineConstants> |
| 49 | + <DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON3;PYTHON37;UCS4;TRACE;DEBUG</DefineConstants> |
50 | 50 | <Optimize>false</Optimize> |
51 | 51 | <DebugType>full</DebugType> |
52 | 52 | </PropertyGroup> |
|
56 | 56 | <DebugType>pdbonly</DebugType> |
57 | 57 | </PropertyGroup> |
58 | 58 | <PropertyGroupCondition=" '$(Configuration)' == 'ReleaseWinPY3'"> |
59 | | - <DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON3;PYTHON37;UCS2</DefineConstants> |
| 59 | + <DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON3;PYTHON37;UCS2</DefineConstants> |
60 | 60 | <Optimize>true</Optimize> |
61 | 61 | <DebugType>pdbonly</DebugType> |
62 | 62 | </PropertyGroup> |
|
68 | 68 | </PropertyGroup> |
69 | 69 | <PropertyGroupCondition=" '$(Configuration)' == 'DebugWinPY3'"> |
70 | 70 | <DebugSymbols>true</DebugSymbols> |
71 | | - <DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON3;PYTHON37;UCS2;TRACE;DEBUG</DefineConstants> |
| 71 | + <DefineConstantsCondition="'$(DefineConstants)' == ''">PYTHON3;PYTHON37;UCS2;TRACE;DEBUG</DefineConstants> |
72 | 72 | <Optimize>false</Optimize> |
73 | 73 | <DebugType>full</DebugType> |
74 | 74 | </PropertyGroup> |
|
137 | 137 | <CompileInclude="pythonexception.cs" /> |
138 | 138 | <CompileInclude="pytuple.cs" /> |
139 | 139 | <CompileInclude="runtime.cs" /> |
| 140 | + <CompileInclude="slots.cs" /> |
140 | 141 | <CompileInclude="typemanager.cs" /> |
141 | 142 | <CompileInclude="typemethod.cs" /> |
142 | 143 | <CompileInclude="Util.cs" /> |
143 | | - <CompileInclude="platform\Types.cs" /> |
144 | | - <CompileInclude="platform\LibraryLoader.cs" /> |
| 144 | + <CompileInclude="platform\Types.cs" /> |
| 145 | + <CompileInclude="platform\LibraryLoader.cs" /> |
145 | 146 | </ItemGroup> |
146 | 147 | <ItemGroupCondition=" '$(PythonInteropFile)' != ''"> |
147 | 148 | <CompileInclude="$(PythonInteropFile)" /> |
|
151 | 152 | <CompileInclude="interop34.cs" /> |
152 | 153 | <CompileInclude="interop35.cs" /> |
153 | 154 | <CompileInclude="interop36.cs" /> |
154 | | - <CompileInclude="interop37.cs" /> |
| 155 | + <CompileInclude="interop37.cs" /> |
155 | 156 | </ItemGroup> |
156 | 157 | <ItemGroup> |
157 | 158 | <NoneInclude="..\pythonnet.snk" /> |
|
170 | 171 | <CopySourceFiles="$(TargetAssembly)"DestinationFolder="$(PythonBuildDir)" /> |
171 | 172 | <!--Copy SourceFiles="$(TargetAssemblyPdb)" Condition="Exists('$(TargetAssemblyPdb)')" DestinationFolder="$(PythonBuildDir)" /--> |
172 | 173 | </Target> |
173 | | -</Project> |
| 174 | +</Project> |