forked from dmitriyse/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPython.Plus.csproj
More file actions
24 lines (19 loc) · 777 Bytes
/
Python.Plus.csproj
File metadata and controls
24 lines (19 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.5</TargetFramework>
<NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.5' ">$(PackageTargetFallback);dnxcore50</PackageTargetFallback>
<RootNamespace>Python.Net</RootNamespace>
</PropertyGroup>
<ItemGroup>
<None Remove="pythonnet.py" />
<None Remove="pythonnet.tests.py" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="pythonnet.py" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\ClrCoder\src\ClrCoder\ClrCoder.csproj" />
<ProjectReference Include="..\runtime\Python.Runtime.15.csproj" />
</ItemGroup>
</Project>