forked from pythonnet/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathPython.Runtime.csproj
More file actions
69 lines (64 loc) · 2.92 KB
/
Python.Runtime.csproj
File metadata and controls
69 lines (64 loc) · 2.92 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0</TargetFrameworks>
<Platforms>AnyCPU</Platforms>
<RootNamespace>Python.Runtime</RootNamespace>
<AssemblyName>Python.Runtime</AssemblyName>
<PackageId>QuantConnect.pythonnet</PackageId>
<Version>2.0.53</Version>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/pythonnet/pythonnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>python interop dynamic dlr Mono pinvoke</PackageTags>
<PackageIcon>python-clear.png</PackageIcon>
<PackageIconUrl>https://raw.githubusercontent.com/pythonnet/pythonnet/master/src/console/python-clear.ico</PackageIconUrl>
<PackageProjectUrl>https://pythonnet.github.io/</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<Description>Python and CLR (.NET and Mono) cross-platform language interop</Description>
<DebugSymbols>true</DebugSymbols>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AssemblyOriginatorKeyFile>..\pythonnet.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<NoWarn>1591;NU1701</NoWarn>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);CustomContentTarget</TargetsForTfmSpecificContentInPackage>
<IsPackable>true</IsPackable>
<PackageOutputPath>$(SolutionDir)</PackageOutputPath>
</PropertyGroup>
<Target Name="CustomContentTarget" AfterTargets="build">
<ItemGroup>
<TfmSpecificPackageFile Include="../../clr.py">
<PackagePath>contentFiles/any/any/</PackagePath>
<PackageCopyToOutput>true</PackageCopyToOutput>
</TfmSpecificPackageFile>
<TfmSpecificPackageFile Include="../../pythonnet/**">
<PackagePath>contentFiles/any/any/pythonnet</PackagePath>
<PackageCopyToOutput>true</PackageCopyToOutput>
</TfmSpecificPackageFile>
</ItemGroup>
</Target>
<PropertyGroup>
<OutputPath>..\..\pythonnet\runtime</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="..\..\src\console\python-clear.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\clr.py">
<LogicalName>clr.py</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="Resources\interop.py">
<LogicalName>interop.py</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="Mixins\*.py" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="fasterflect" Version="3.0.0" />
</ItemGroup>
</Project>