Skip to content

Commit 30864a8

Browse files
Initial version
1 parent 1670a0a commit 30864a8

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

HelloWorld/HelloWorld.sln

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.30723.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "HelloWorld", "HelloWorld\HelloWorld.pyproj", "{9BAE4970-E29F-4902-BAE2-CD9CC8BE1DAF}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{9BAE4970-E29F-4902-BAE2-CD9CC8BE1DAF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{9BAE4970-E29F-4902-BAE2-CD9CC8BE1DAF}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{9BAE4970-E29F-4902-BAE2-CD9CC8BE1DAF}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{9BAE4970-E29F-4902-BAE2-CD9CC8BE1DAF}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal

HelloWorld/HelloWorld/HelloWorld.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#This is a comment
2+
#And I can add lots of comments
3+
print('Hi World')
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<SchemaVersion>2.0</SchemaVersion>
6+
<ProjectGuid>9bae4970-e29f-4902-bae2-cd9cc8be1daf</ProjectGuid>
7+
<ProjectHome>.</ProjectHome>
8+
<StartupFile>HelloWorld.py</StartupFile>
9+
<SearchPath>
10+
</SearchPath>
11+
<WorkingDirectory>.</WorkingDirectory>
12+
<OutputPath>.</OutputPath>
13+
<Name>HelloWorld</Name>
14+
<RootNamespace>HelloWorld</RootNamespace>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
17+
<DebugSymbols>true</DebugSymbols>
18+
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
19+
</PropertyGroup>
20+
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
21+
<DebugSymbols>true</DebugSymbols>
22+
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
23+
</PropertyGroup>
24+
<ItemGroup>
25+
<Compile Include="HelloWorld.py" />
26+
</ItemGroup>
27+
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" />
28+
</Project>

0 commit comments

Comments
 (0)