-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathPython.Deployment.InstallWheel.csproj
More file actions
30 lines (30 loc) · 1.15 KB
/
Copy pathPython.Deployment.InstallWheel.csproj
File metadata and controls
30 lines (30 loc) · 1.15 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Remove="numpy-1.16.3-cp37-cp37m-win_amd64.whl" />
<None Remove="python-3.7.3-embed-amd64.zip" />
<None Remove="python-3.8.5-embed-amd64.zip" />
<None Remove="python_dateutil-2.8.1-py2.py3-none-any.whl" />
<None Remove="six-1.15.0-py2.py3-none-any.whl" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="numpy-1.16.3-cp37-cp37m-win_amd64.whl" />
<EmbeddedResource Include="python-3.7.3-embed-amd64.zip" />
<EmbeddedResource Include="python_dateutil-2.8.1-py2.py3-none-any.whl" />
<EmbeddedResource Include="six-1.15.0-py2.py3-none-any.whl" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="pythonnet" Version="3.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Python.Deployment\Python.Deployment.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="pytz-2020.1-py2.py3-none-any.whl">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>