forked from pythonnet/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPython.Runtime.csproj
More file actions
45 lines (38 loc) · 1.65 KB
/
Python.Runtime.csproj
File metadata and controls
45 lines (38 loc) · 1.65 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Python.Runtime.NETStandard</AssemblyName>
<Version>3.5.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseUrl>http://pythonnet.github.io/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/henon/pythonnet_netstandard</PackageProjectUrl>
<Description>Python for .NET compiled against .Net Standard 2.0 and CPython 3.5
</Description>
<Copyright>2019</Copyright>
<Authors>Meinrad Recheis, Python for .NET Team</Authors>
<Company />
<RepositoryUrl>https://github.com/henon/pythonnet_netstandard</RepositoryUrl>
<RepositoryType>github</RepositoryType>
<PackageTags>Python, pythonnet,</PackageTags>
<PackageIconUrl></PackageIconUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;PYTHON3;PYTHON37;UCS2</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;PYTHON3;PYTHON35;UCS2</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<WarningLevel>0</WarningLevel>
</PropertyGroup>
<ItemGroup>
<None Remove="resources\clr.py" />
<Compile Remove="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="resources\clr.py" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" />
</ItemGroup>
</Project>