FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/runtime/Python.Runtime.csproj at update/NetCore21 · losttech/pythonnet · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
losttech
/
pythonnet
Public
forked from
pythonnet/pythonnet
Notifications
You must be signed in to change notification settings
Fork
1
Star
2
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
190 lines (190 loc) · 8.52 KB
Breadcrumbs
pythonnet
/
src
/
runtime
/
Python.Runtime.csproj
Copy path
File metadata and controls
190 lines (190 loc) · 8.52 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<
?xm
l versio
n
=
"1.
0
" encodin
g
=
"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
>7.3</
LangVersion
>
<
AllowUnsafeBlocks
>true</
AllowUnsafeBlocks
>
<
SignAssembly
>false</
SignAssembly
>
<
AssemblyOriginatorKeyFile
>..\pythonnet.snk</
AssemblyOriginatorKeyFile
>
</
PropertyGroup
>
<!--
We can relax binding to platform because code references no any platform dependent assemblies
-->
<!--
This will allows to use any build of this assebly as a compile ref assebly
-->
<!--
<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;PYTHON38;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;PYTHON38;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;PYTHON38;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;PYTHON38;UCS2;TRACE;DEBUG</
DefineConstants
>
<
Optimize
>false</
Optimize
>
<
DebugType
>full</
DebugType
>
</
PropertyGroup
>
<
ItemGroup
>
<
Reference
Include
=
"
System
"
/>
</
ItemGroup
>
<
ItemGroup
>
<
Compile
Include
=
"
Codecs\EncoderGroup.cs
"
/>
<
Compile
Include
=
"
Codecs\DecoderGroup.cs
"
/>
<
Compile
Include
=
"
Codecs\RawProxyEncoder.cs
"
/>
<
Compile
Include
=
"
Codecs\TupleCodecs.cs
"
/>
<
Compile
Include
=
"
converterextensions.cs
"
/>
<
Compile
Include
=
"
finalizer.cs
"
/>
<
Compile
Include
=
"
intern.cs
"
/>
<
Compile
Include
=
"
intern_.cs
"
/>
<
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
=
"
BorrowedReference.cs
"
/>
<
Compile
Include
=
"
bufferinterface.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
=
"
NewReference.cs
"
/>
<
Compile
Include
=
"
NonCopyableAttribute.cs
"
/>
<
Compile
Include
=
"
overload.cs
"
/>
<
Compile
Include
=
"
propertyobject.cs
"
/>
<
Compile
Include
=
"
pyansistring.cs
"
/>
<
Compile
Include
=
"
pybuffer.cs
"
/>
<
Compile
Include
=
"
pydict.cs
"
/>
<
Compile
Include
=
"
PyExportAttribute.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
=
"
pyscope.cs
"
/>
<
Compile
Include
=
"
pysequence.cs
"
/>
<
Compile
Include
=
"
pystring.cs
"
/>
<
Compile
Include
=
"
pythonengine.cs
"
/>
<
Compile
Include
=
"
pythonexception.cs
"
/>
<
Compile
Include
=
"
pytuple.cs
"
/>
<
Compile
Include
=
"
ReferenceExtensions.cs
"
/>
<
Compile
Include
=
"
runtime.cs
"
/>
<
Compile
Include
=
"
runtime_data.cs
"
/>
<
Compile
Include
=
"
runtime_state.cs
"
/>
<
Compile
Include
=
"
typemanager.cs
"
/>
<
Compile
Include
=
"
typemethod.cs
"
/>
<
Compile
Include
=
"
Util.cs
"
/>
<
Compile
Include
=
"
platform\Types.cs
"
/>
<
Compile
Include
=
"
platform\LibraryLoader.cs
"
/>
<
Compile
Include
=
"
polyfill\ReflectionPolifills.cs
"
/>
<
Compile
Include
=
"
platform\NativeCodePage.cs
"
/>
<
Compile
Include
=
"
slots\mp_length.cs
"
/>
</
ItemGroup
>
<
ItemGroup
Condition
=
"
'$(PythonInteropFile)' != ''
"
>
<
Compile
Include
=
"
$(PythonInteropFile)
"
/>
</
ItemGroup
>
<
ItemGroup
Condition
=
"
'$(PythonInteropFile)' == ''
"
>
<
Compile
Include
=
"
interop36.cs
"
/>
<
Compile
Include
=
"
interop37.cs
"
/>
<
Compile
Include
=
"
interop38.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