forked from dmitriyse/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPython.Runtime.15.csproj
More file actions
77 lines (71 loc) · 3.3 KB
/
Python.Runtime.15.csproj
File metadata and controls
77 lines (71 loc) · 3.3 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsWindows Condition="'$(OS)' == 'Windows_NT'">true</IsWindows>
</PropertyGroup>
<!--Fix for the bug https://github.com/dotnet/sdk/issues/826-->
<PropertyGroup Condition="'IsWindows'=='true'">
<TargetFrameworks>net40;netstandard1.5</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="'IsWindows'!='true'">
<TargetFrameworks>netstandard1.5</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Python.Runtime</RootNamespace>
<AssemblyName>Python.Runtime</AssemblyName>
<PackageId>Python.Runtime</PackageId>
<VersionPrefix>3.0.0</VersionPrefix>
<VersionSuffix>Alpha</VersionSuffix>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<!--<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>-->
<NetStandardImplicitPackageVersion>1.6.0</NetStandardImplicitPackageVersion>
<NoWarn>1701;1702;1705;3021;618</NoWarn>
<DefineConstantsOriginal>$(DefineConstants);XPLAT;REFLECTIONBRIDGE;$(PYTHONNET_BUILD_FLAGS)</DefineConstantsOriginal>
<DefineConstants>$(DefineConstants);XPLAT;REFLECTIONBRIDGE;$(PYTHONNET_BUILD_FLAGS)</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug-Linux-UCS4-Py35-Malloc|net40|x64'">
<DefineConstants>$(DefineConstantsOriginal);XPLAT;REFLECTIONBRIDGE;LINUX;UNIX;UCS4;PYTHON_WITH_PYMALLOC;MONO_LINUX;PYTHON3;PYTHON35</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug-Linux-UCS4-Py35-Malloc|netstandard1.5|x64'">
<DefineConstants>$(DefineConstantsOriginal);XPLAT;REFLECTIONBRIDGE;LINUX;UNIX;UCS4;PYTHON_WITH_PYMALLOC;MONO_LINUX;PYTHON3;PYTHON35</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.5'">
<PackageReference Include="System.AppDomain">
<Version>2.0.11</Version>
</PackageReference>
<PackageReference Include="System.Collections.NonGeneric">
<Version>4.0.1</Version>
</PackageReference>
<PackageReference Include="System.Data.Common">
<Version>4.1.0</Version>
</PackageReference>
<PackageReference Include="System.Diagnostics.StackTrace">
<Version>4.0.1</Version>
</PackageReference>
<PackageReference Include="System.Dynamic.Runtime">
<Version>4.0.11</Version>
</PackageReference>
<PackageReference Include="System.Reflection.Emit">
<Version>4.0.1</Version>
</PackageReference>
<PackageReference Include="System.Reflection.TypeExtensions">
<Version>4.1.0</Version>
</PackageReference>
<PackageReference Include="System.Runtime.Loader">
<Version>4.0.0</Version>
</PackageReference>
<PackageReference Include="System.Runtime.Serialization.Formatters">
<Version>4.0.0-rc3-24212-01</Version>
</PackageReference>
<PackageReference Include="System.Threading.Thread">
<Version>4.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Remove="resources\clr.py" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="resources\clr.py" />
</ItemGroup>
</Project>