FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/runtime/Python.Runtime.csproj at missing_func · dsuarezv/pythonnet · GitHub
dsuarezv
/
pythonnet
Public
forked from
pythonnet/pythonnet
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonnet
/
src
/
runtime
/
Python.Runtime.csproj
Copy path
More file actions
More file actions
Latest commit
History
History
History
166 lines (166 loc) · 7.15 KB
Breadcrumbs
pythonnet
/
src
/
runtime
/
Python.Runtime.csproj
Copy path
File metadata and controls
166 lines (166 loc) · 7.15 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<?
xml
version
=
"
1.0
"
encoding
=
"
utf-8
"
?>
<
Project
DefaultTargets
=
"
Build
"
xmlns
=
"
http://schemas.microsoft.com/developer/msbuild/2003
"
ToolsVersion
=
"
4.0
"
>
<
PropertyGroup
>
<
Configuration
Condition
=
"
'$(Configuration)' == ''
"
>Debug</
Configuration
>
<
Platform
Condition
=
"
'$(Platform)' == ''
"
>AnyCPU</
Platform
>
<
ProjectGuid
>{097B4AC0-74E9-4C58-BCF8-C69746EC8271}</
ProjectGuid
>
<
OutputType
>Library</
OutputType
>
<
AssemblyName
>Python.Runtime</
AssemblyName
>
<
RootNamespace
>Python.Runtime</
RootNamespace
>
<
DocumentationFile
>bin\Python.Runtime.xml</
DocumentationFile
>
<
OutputPath
>bin\</
OutputPath
>
<
TargetFrameworkVersion
>v4.0</
TargetFrameworkVersion
>
<
TargetFrameworkProfile
/>
<
NoWarn
>1591</
NoWarn
>
<
SolutionDir
Condition
=
"
$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'
"
>..\..\</
SolutionDir
>
<
PythonBuildDir
Condition
=
"
'$(PythonBuildDir)' == ''
"
>$(SolutionDir)\bin\</
PythonBuildDir
>
<
AppDesignerFolder
>Properties</
AppDesignerFolder
>
<
LangVersion
>6</
LangVersion
>
<
AllowUnsafeBlocks
>true</
AllowUnsafeBlocks
>
<
SignAssembly
>false</
SignAssembly
>
<
AssemblyOriginatorKeyFile
>..\pythonnet.snk</
AssemblyOriginatorKeyFile
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Platform)' == 'x86'
"
>
<
PlatformTarget
>x86</
PlatformTarget
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Platform)' == 'x64'
"
>
<
PlatformTarget
>x64</
PlatformTarget
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Configuration)' == 'ReleaseMono'
"
>
<
DefineConstants
Condition
=
"
'$(DefineConstants)' == ''
"
>PYTHON2;PYTHON27;UCS4</
DefineConstants
>
<
Optimize
>true</
Optimize
>
<
DebugType
>pdbonly</
DebugType
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Configuration)' == 'ReleaseMonoPY3'
"
>
<
DefineConstants
Condition
=
"
'$(DefineConstants)' == ''
"
>PYTHON3;PYTHON36;UCS4</
DefineConstants
>
<
Optimize
>true</
Optimize
>
<
DebugType
>pdbonly</
DebugType
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Configuration)' == 'DebugMono'
"
>
<
DebugSymbols
>true</
DebugSymbols
>
<
DefineConstants
Condition
=
"
'$(DefineConstants)' == ''
"
>PYTHON2;PYTHON27;UCS4;TRACE;DEBUG</
DefineConstants
>
<
Optimize
>false</
Optimize
>
<
DebugType
>full</
DebugType
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Configuration)' == 'DebugMonoPY3'
"
>
<
DebugSymbols
>true</
DebugSymbols
>
<
DefineConstants
Condition
=
"
'$(DefineConstants)' == ''
"
>PYTHON3;PYTHON36;UCS4;TRACE;DEBUG</
DefineConstants
>
<
Optimize
>false</
Optimize
>
<
DebugType
>full</
DebugType
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Configuration)' == 'ReleaseWin'
"
>
<
DefineConstants
Condition
=
"
'$(DefineConstants)' == ''
"
>PYTHON2;PYTHON27;UCS2</
DefineConstants
>
<
Optimize
>true</
Optimize
>
<
DebugType
>pdbonly</
DebugType
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Configuration)' == 'ReleaseWinPY3'
"
>
<
DefineConstants
Condition
=
"
'$(DefineConstants)' == ''
"
>PYTHON3;PYTHON36;UCS2</
DefineConstants
>
<
Optimize
>true</
Optimize
>
<
DebugType
>pdbonly</
DebugType
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Configuration)' == 'DebugWin'
"
>
<
DebugSymbols
>true</
DebugSymbols
>
<
DefineConstants
Condition
=
"
'$(DefineConstants)' == ''
"
>PYTHON2;PYTHON27;UCS2;TRACE;DEBUG</
DefineConstants
>
<
Optimize
>false</
Optimize
>
<
DebugType
>full</
DebugType
>
</
PropertyGroup
>
<
PropertyGroup
Condition
=
"
'$(Configuration)' == 'DebugWinPY3'
"
>
<
DebugSymbols
>true</
DebugSymbols
>
<
DefineConstants
Condition
=
"
'$(DefineConstants)' == ''
"
>PYTHON3;PYTHON36;UCS2;TRACE;DEBUG</
DefineConstants
>
<
Optimize
>false</
Optimize
>
<
DebugType
>full</
DebugType
>
</
PropertyGroup
>
<
ItemGroup
>
<
Reference
Include
=
"
System
"
/>
</
ItemGroup
>
<
ItemGroup
>
<
Compile
Include
=
"
Properties\AssemblyInfo.cs
"
/>
<
Compile
Include
=
"
..\SharedAssemblyInfo.cs
"
>
<
Link
>Properties\SharedAssemblyInfo.cs</
Link
>
</
Compile
>
<
Compile
Include
=
"
arrayobject.cs
"
/>
<
Compile
Include
=
"
assemblymanager.cs
"
/>
<
Compile
Include
=
"
classderived.cs
"
/>
<
Compile
Include
=
"
classbase.cs
"
/>
<
Compile
Include
=
"
classmanager.cs
"
/>
<
Compile
Include
=
"
classobject.cs
"
/>
<
Compile
Include
=
"
clrobject.cs
"
/>
<
Compile
Include
=
"
codegenerator.cs
"
/>
<
Compile
Include
=
"
constructorbinder.cs
"
/>
<
Compile
Include
=
"
constructorbinding.cs
"
/>
<
Compile
Include
=
"
converter.cs
"
/>
<
Compile
Include
=
"
CustomMarshaler.cs
"
/>
<
Compile
Include
=
"
debughelper.cs
"
/>
<
Compile
Include
=
"
delegatemanager.cs
"
/>
<
Compile
Include
=
"
delegateobject.cs
"
/>
<
Compile
Include
=
"
eventbinding.cs
"
/>
<
Compile
Include
=
"
eventobject.cs
"
/>
<
Compile
Include
=
"
exceptions.cs
"
/>
<
Compile
Include
=
"
extensiontype.cs
"
/>
<
Compile
Include
=
"
fieldobject.cs
"
/>
<
Compile
Include
=
"
generictype.cs
"
/>
<
Compile
Include
=
"
genericutil.cs
"
/>
<
Compile
Include
=
"
importhook.cs
"
/>
<
Compile
Include
=
"
indexer.cs
"
/>
<
Compile
Include
=
"
interfaceobject.cs
"
/>
<
Compile
Include
=
"
interfaces.cs
"
/>
<
Compile
Include
=
"
interop.cs
"
/>
<
Compile
Include
=
"
iterator.cs
"
/>
<
Compile
Include
=
"
managedtype.cs
"
/>
<
Compile
Include
=
"
metatype.cs
"
/>
<
Compile
Include
=
"
methodbinder.cs
"
/>
<
Compile
Include
=
"
methodbinding.cs
"
/>
<
Compile
Include
=
"
methodobject.cs
"
/>
<
Compile
Include
=
"
methodwrapper.cs
"
/>
<
Compile
Include
=
"
modulefunctionobject.cs
"
/>
<
Compile
Include
=
"
moduleobject.cs
"
/>
<
Compile
Include
=
"
modulepropertyobject.cs
"
/>
<
Compile
Include
=
"
nativecall.cs
"
/>
<
Compile
Include
=
"
overload.cs
"
/>
<
Compile
Include
=
"
propertyobject.cs
"
/>
<
Compile
Include
=
"
pyansistring.cs
"
/>
<
Compile
Include
=
"
pydict.cs
"
/>
<
Compile
Include
=
"
pyfloat.cs
"
/>
<
Compile
Include
=
"
pyint.cs
"
/>
<
Compile
Include
=
"
pyiter.cs
"
/>
<
Compile
Include
=
"
pylist.cs
"
/>
<
Compile
Include
=
"
pylong.cs
"
/>
<
Compile
Include
=
"
pynumber.cs
"
/>
<
Compile
Include
=
"
pyobject.cs
"
/>
<
Compile
Include
=
"
pysequence.cs
"
/>
<
Compile
Include
=
"
pystring.cs
"
/>
<
Compile
Include
=
"
pythonengine.cs
"
/>
<
Compile
Include
=
"
pythonexception.cs
"
/>
<
Compile
Include
=
"
pytuple.cs
"
/>
<
Compile
Include
=
"
runtime.cs
"
/>
<
Compile
Include
=
"
typemanager.cs
"
/>
<
Compile
Include
=
"
typemethod.cs
"
/>
</
ItemGroup
>
<
ItemGroup
Condition
=
"
'$(PythonInteropFile)' != ''
"
>
<
Compile
Include
=
"
$(PythonInteropFile)
"
/>
</
ItemGroup
>
<
ItemGroup
Condition
=
"
'$(PythonInteropFile)' == ''
"
>
<
Compile
Include
=
"
interop27.cs
"
/>
<
Compile
Include
=
"
interop33.cs
"
/>
<
Compile
Include
=
"
interop34.cs
"
/>
<
Compile
Include
=
"
interop35.cs
"
/>
<
Compile
Include
=
"
interop36.cs
"
/>
</
ItemGroup
>
<
ItemGroup
>
<
None
Include
=
"
..\pythonnet.snk
"
/>
</
ItemGroup
>
<
ItemGroup
>
<
EmbeddedResource
Include
=
"
resources\clr.py
"
>
<
LogicalName
>clr.py</
LogicalName
>
</
EmbeddedResource
>
</
ItemGroup
>
<
Import
Project
=
"
$(MSBuildBinPath)\Microsoft.CSHARP.Targets
"
/>
<
PropertyGroup
>
<
TargetAssembly
>$(TargetPath)</
TargetAssembly
>
<
TargetAssemblyPdb
>$(TargetDir)$(TargetName).pdb</
TargetAssemblyPdb
>
</
PropertyGroup
>
<
Target
Name
=
"
AfterBuild
"
>
<
Copy
SourceFiles
=
"
$(TargetAssembly)
"
DestinationFolder
=
"
$(PythonBuildDir)
"
/>
<!--
Copy SourceFiles="$(TargetAssemblyPdb)" Condition="Exists('$(TargetAssemblyPdb)')" DestinationFolder="$(PythonBuildDir)" /
-->
</
Target
>
</
Project
>
Back
|
FazBrowse Home
|
New Git URL