-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlgorithmsAndDataStructures.pyproj
More file actions
70 lines (70 loc) · 2.65 KB
/
Copy pathAlgorithmsAndDataStructures.pyproj
File metadata and controls
70 lines (70 loc) · 2.65 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
70
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>25989e7f-4261-429f-9d98-5130be57afb7</ProjectGuid>
<ProjectHome>.</ProjectHome>
<StartupFile>AlgorithmsAndDataStructures.py</StartupFile>
<SearchPath>Search;Sort;DataStructures;ExamplePrograms</SearchPath>
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<Name>AlgorithmsAndDataStructures</Name>
<RootNamespace>AlgorithmsAndDataStructures</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<ItemGroup>
<Compile Include="AlgorithmsAndDataStructures.py" />
<Compile Include="DataStructures\Node.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="DataStructures\QueueUsingNode.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="DataStructures\StackUsingNode.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="ExamplePrograms\PaymentBuilder.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="Search\BinarySearch.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="Sort\BubbleSort.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="Sort\InsertionSort.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="Sort\MergeSort.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="Sort\QuickSort.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="Sort\SelectionSort.py">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Folder Include="DataStructures\" />
<Folder Include="ExamplePrograms\" />
<Folder Include="Sort\" />
<Folder Include="Search\" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
<!-- Uncomment the CoreCompile target to enable the Build command in
Visual Studio and specify your pre- and post-build commands in
the BeforeBuild and AfterBuild targets below. -->
<!--<Target Name="CoreCompile" />-->
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
</Project>