Added VS solution files

This commit is contained in:
Markus Däschler 2020-01-17 14:45:43 +01:00
parent beeb052b36
commit 2cb8ae9b57
4 changed files with 73 additions and 1 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
*~
*.pyc
.ropeproject
.ropeproject
/activities

BIN
.vs/garminexport/v15/.suo Normal file

Binary file not shown.

48
garminexport.pyproj Normal file
View File

@ -0,0 +1,48 @@
<?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>{d50fae62-d8a2-4ec8-8cc8-e419c1eeb08a}</ProjectGuid>
<ProjectHome />
<StartupFile>garminbackup.py</StartupFile>
<SearchPath />
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<ProjectTypeGuids>{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
<LaunchProvider>Standard Python launcher</LaunchProvider>
<InterpreterId />
<IsWindowsApplication>False</IsWindowsApplication>
<CommandLineArguments>
</CommandLineArguments>
<EnableNativeCodeDebugging>False</EnableNativeCodeDebugging>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
<PropertyGroup>
<VisualStudioVersion Condition=" '$(VisualStudioVersion)' == '' ">10.0</VisualStudioVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="requirements.txt" />
</ItemGroup>
<ItemGroup>
<Compile Include="garminbackup.py" />
<Compile Include="garminexport\backup.py" />
<Compile Include="garminexport\garminclient.py" />
<Compile Include="garminexport\retryer.py" />
<Compile Include="garminexport\__init__.py" />
<Compile Include="get_activity.py" />
<Compile Include="samples\lab.py" />
<Compile Include="samples\sample.py" />
<Compile Include="setup.py" />
<Compile Include="tests\test_retryer.py" />
<Compile Include="tests\__init__.py" />
<Compile Include="upload_activity.py" />
</ItemGroup>
<ItemGroup>
<Folder Include="garminexport" />
<Folder Include="samples" />
<Folder Include="tests" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
</Project>

23
garminexport.sln Normal file
View File

@ -0,0 +1,23 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.489
MinimumVisualStudioVersion = 10.0.40219.1
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "garminexport", "garminexport.pyproj", "{D50FAE62-D8A2-4EC8-8CC8-E419C1EEB08A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D50FAE62-D8A2-4EC8-8CC8-E419C1EEB08A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D50FAE62-D8A2-4EC8-8CC8-E419C1EEB08A}.Release|Any CPU.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {1A6E416C-EC70-4661-80B3-C781AFD9E10A}
EndGlobalSection
EndGlobal