Skip to content

Commit

Permalink
Merge branch 'visual-studio-support' of https://github.com/horiakr/gn…
Browse files Browse the repository at this point in the history
…omecast into horiakr-visual-studio-support
  • Loading branch information
keredson committed May 31, 2019
2 parents 3a1e536 + 9228036 commit 6941fb2
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Expand Up @@ -103,3 +103,11 @@ ENV/
# PyCharm
.idea/

# Exclude Visual Studio solution files
*.sdf
*.VC.opendb
*.VC.db
*.opensdf
*.suo
*.user
*.orig
45 changes: 45 additions & 0 deletions gnomecast.pyproj
@@ -0,0 +1,45 @@
<?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>{d27f42e0-77f0-4143-a8d1-2af05b9e1e51}</ProjectGuid>
<ProjectHome />
<StartupFile>gnomecast.py</StartupFile>
<SearchPath />
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<ProjectTypeGuids>{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
<LaunchProvider>Standard Python launcher</LaunchProvider>
<InterpreterId>{9a7a9026-48c1-4688-9d5d-e5699d47d074}</InterpreterId>
<InterpreterVersion>3.4</InterpreterVersion>
</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>
<Content Include="icons\gnomecast.svg" />
<Content Include="icons\gnomecast_16.png" />
<Content Include="icons\gnomecast_48.png" />
<Content Include="receiver.html" />
<Content Include="requirements.txt" />
<Content Include="www\gnomecast.css" />
<Content Include="www\screenshot.png" />
</ItemGroup>
<ItemGroup>
<Compile Include="gnomecast.py" />
<Compile Include="setup.py" />
</ItemGroup>
<ItemGroup>
<Folder Include="icons" />
<Folder Include="www" />
</ItemGroup>
<ItemGroup>
<InterpreterReference Include="{9a7a9026-48c1-4688-9d5d-e5699d47d074}\3.4" />
</ItemGroup>
<Import Project="$(PtvsTargetsFile)" Condition="Exists($(PtvsTargetsFile))" />
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" Condition="!Exists($(PtvsTargetsFile))" />
</Project>
20 changes: 20 additions & 0 deletions gnomecast.sln
@@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "gnomecast", "gnomecast.pyproj", "{D27F42E0-77F0-4143-A8D1-2AF05B9E1E51}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D27F42E0-77F0-4143-A8D1-2AF05B9E1E51}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D27F42E0-77F0-4143-A8D1-2AF05B9E1E51}.Release|Any CPU.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

0 comments on commit 6941fb2

Please sign in to comment.