Skip to content

Commit eb88a7e

Browse files
committed
Split files
[skip ci]
1 parent 683b176 commit eb88a7e

File tree

5 files changed

+44
-21
lines changed

5 files changed

+44
-21
lines changed

src/sdk/IronPython.Sdk.Sample/IronPython.Sdk.Sample.pyproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project ToolsVersion="4.0">
22
<PropertyGroup>
3-
<InterpreterId>Global|IronPython|3.4</InterpreterId>
3+
<PythonInterpreter>IronPython</PythonInterpreter>
4+
<PythonVersion>3.4</PythonVersion>
45
</PropertyGroup>
56
<ItemGroup>
67
<Compile Include="*.py" />
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<Project>
2+
<PropertyGroup>
3+
<StartupFile>main.py</StartupFile>
4+
<!--
5+
<StartupFile Condition="Exists('main.py')">main.py</StartupFile>
6+
<StartupFile Condition="Exists('main.py') and '$(StartupFile)' == ''">main.py</StartupFile>
7+
-->
8+
</PropertyGroup>
9+
<!-- This doesn't work right now -->
10+
<ItemGroup>
11+
<Compile Include="*.py" Exclude="obj\**;bin\**"/>
12+
</ItemGroup>
13+
</Project>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<Project>
2+
<PropertyGroup>
3+
<ProjectHome>.</ProjectHome>
4+
<SearchPath>
5+
</SearchPath>
6+
<WorkingDirectory>.</WorkingDirectory>
7+
<OutputPath>.</OutputPath>
8+
<Name>$(MSBuildProjectName)</Name>
9+
<RootNamespace>$(Name)</RootNamespace>
10+
</PropertyGroup>
11+
</Project>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<Project>
2+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
3+
<!-- Uncomment the CoreCompile target to enable the Build command in
4+
Visual Studio and specify your pre- and post-build commands in
5+
the BeforeBuild and AfterBuild targets below. -->
6+
<!--<Target Name="CoreCompile" />-->
7+
<Target Name="BeforeBuild">
8+
</Target>
9+
<Target Name="AfterBuild">
10+
</Target>
11+
</Project>
Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,17 @@
11
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
22
<Import Project="Debugging.props" />
3+
<Import Project="PythonTools.props" />
4+
<Import Project="PythonEngine.props" />
5+
<Import Project="FileIncludes.props" />
36
<PropertyGroup>
7+
<!-- Default -->
8+
<InterpreterId>Global|$(PythonInterpreter)|$(PythonVersion)</InterpreterId>
9+
410
<SchemaVersion>2.0</SchemaVersion>
511
<ProjectGuid>c1e9ed5c-242e-4f90-8e69-7fdde3c919bd</ProjectGuid>
6-
<ProjectHome>.</ProjectHome>
7-
<StartupFile>Program.py</StartupFile>
8-
<SearchPath>
9-
</SearchPath>
10-
<WorkingDirectory>.</WorkingDirectory>
11-
<OutputPath>.</OutputPath>
12-
<Name>$(MSBuildProjectName)</Name>
13-
<RootNamespace>$(Name)</RootNamespace>
1412
</PropertyGroup>
15-
<ItemGroup>
16-
<Compile Include="*.py" Exclude="obj\**;bin\**"/>
17-
</ItemGroup>
1813
<ItemGroup>
1914
<InterpreterReference Include="Global|IronPython|3.4" />
15+
<InterpreterReference Include="Global|PythonCore|3.12" />
2016
</ItemGroup>
21-
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
22-
<!-- Uncomment the CoreCompile target to enable the Build command in
23-
Visual Studio and specify your pre- and post-build commands in
24-
the BeforeBuild and AfterBuild targets below. -->
25-
<!--<Target Name="CoreCompile" />-->
26-
<Target Name="BeforeBuild">
27-
</Target>
28-
<Target Name="AfterBuild">
29-
</Target>
3017
</Project>

0 commit comments

Comments
 (0)