Skip to content

Commit

Permalink
Visual Studio solution
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Dec 13, 2014
1 parent 5e08036 commit 53fb583
Show file tree
Hide file tree
Showing 3 changed files with 113 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ data/TradeDangerous.db
data/TradeDangerous.db-journal
data/TradeDangerous.prices
*.prices
TradeDangerous.sln
*.suo
*.pyperf
misc/*.csv
Expand Down
93 changes: 93 additions & 0 deletions TradeDangerous.pyproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{d36f3ae1-f917-41e9-a3f9-61cfe02c5f0f}</ProjectGuid>
<ProjectHome />
<StartupFile>trade.py</StartupFile>
<SearchPath />
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<ProjectTypeGuids>{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
<LaunchProvider>Standard Python launcher</LaunchProvider>
<InterpreterId />
<InterpreterVersion />
<CommandLineArguments>run -vv --ly 10.38 --empty 11.16 --cap 18 --jumps 6 --cr 131366 --from "aritimi" -s 3</CommandLineArguments>
<EnableNativeCodeDebugging>False</EnableNativeCodeDebugging>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
<PropertyGroup>
<VisualStudioVersion Condition=" '$(VisualStudioVersion)' == '' ">10.0</VisualStudioVersion>
<PtvsTargetsFile>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets</PtvsTargetsFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="cache.py" />
<Compile Include="commands\buildcache_cmd.py" />
<Compile Include="commands\buy_cmd.py" />
<Compile Include="commands\commandenv.py" />
<Compile Include="commands\exceptions.py" />
<Compile Include="commands\export_cmd.py" />
<Compile Include="commands\import_cmd.py" />
<Compile Include="commands\local_cmd.py" />
<Compile Include="commands\nav_cmd.py" />
<Compile Include="commands\parsing.py" />
<Compile Include="commands\run_cmd.py" />
<Compile Include="commands\sell_cmd.py" />
<Compile Include="commands\test_commands.py" />
<Compile Include="commands\update_cmd.py" />
<Compile Include="commands\update_gui.py" />
<Compile Include="commands\__init__.py" />
<Compile Include="corrections.py" />
<Compile Include="formatting.py" />
<Compile Include="mfd\saitek\directoutput.py" />
<Compile Include="mfd\saitek\x52pro.py" />
<Compile Include="mfd\saitek\__init__.py" />
<Compile Include="mfd\__init__.py" />
<Compile Include="misc\coord64.py" />
<Compile Include="misc\diff-system-csvs.py" />
<Compile Include="misc\edstarquery.py" />
<Compile Include="mkstats.py" />
<Compile Include="prices.py" />
<Compile Include="pygui.py" />
<Compile Include="trade.py" />
<Compile Include="tradecalc.py" />
<Compile Include="tradedb.py" />
<Compile Include="tradeenv.py" />
<Compile Include="tradeexcept.py" />
<Compile Include="trading.py" />
<Compile Include="xfer.py" />
</ItemGroup>
<ItemGroup>
<Content Include="CHANGES.txt" />
<Content Include="data\Added.csv" />
<Content Include="data\AltItemNames.csv" />
<Content Include="data\Category.csv" />
<Content Include="data\Item.csv" />
<Content Include="data\Ship.csv" />
<Content Include="data\ShipVendor.csv" />
<Content Include="data\Station.csv" />
<Content Include="data\System.csv" />
<Content Include="data\TradeDangerous.sql" />
<Content Include="README.txt" />
<Content Include="scripts\config.sh" />
<Content Include="scripts\README.txt" />
<Content Include="scripts\tdbuyfrom" />
<Content Include="scripts\tdimad" />
<Content Include="scripts\tdloc" />
<Content Include="scripts\tdnav" />
<Content Include="scripts\tdrun" />
<Content Include="scripts\tdupd" />
</ItemGroup>
<ItemGroup>
<Folder Include="commands" />
<Folder Include="data" />
<Folder Include="mfd" />
<Folder Include="mfd\saitek" />
<Folder Include="misc" />
<Folder Include="scripts" />
</ItemGroup>
<Import Project="$(PtvsTargetsFile)" Condition="Exists($(PtvsTargetsFile))" />
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" Condition="!Exists($(PtvsTargetsFile))" />
</Project>
20 changes: 20 additions & 0 deletions TradeDangerous.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30501.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "TradeDangerous", "TradeDangerous.pyproj", "{D36F3AE1-F917-41E9-A3F9-61CFE02C5F0F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D36F3AE1-F917-41E9-A3F9-61CFE02C5F0F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D36F3AE1-F917-41E9-A3F9-61CFE02C5F0F}.Release|Any CPU.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

0 comments on commit 53fb583

Please sign in to comment.