Skip to content

Commit

Permalink
Support for VS15
Browse files Browse the repository at this point in the history
  • Loading branch information
madskristensen committed May 2, 2016
1 parent 258bd1f commit 323071c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.0.{build}
image: Visual Studio 2015

install:
- ps: (new-object Net.WebClient).DownloadString("https://raw.github.com/madskristensen/ExtensionScripts/master/AppVeyor/vsix.ps1") | iex
Expand Down
24 changes: 15 additions & 9 deletions src/source.extension.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
// ------------------------------------------------------------------------------
// <auto-generated>
// This file was generated by Extensibility Tools 2015 v1.7.160
// </auto-generated>
// ------------------------------------------------------------------------------
namespace MadsKristensen.VoiceExtension
{
static class Vsix
{
public const string Id = "b4558cd7-da41-47e7-8969-46c357a1b8b3";
public const string Name = "Voice Commands";
public const string Description = "Control Visual Studio using your own voice and with high accuracy";
public const string Version = "1.6";
public const string Author = "Mads Kristensen";
public const string Tags = "voice, speech, speak";
}
static class Vsix
{
public const string Id = "b4558cd7-da41-47e7-8969-46c357a1b8b3";
public const string Name = "Voice Commands";
public const string Description = "Control Visual Studio using your own voice and with high accuracy";
public const string Language = "en-US";
public const string Version = "1.7";
public const string Author = "Mads Kristensen";
public const string Tags = "voice, speech, speak";
}
}
3 changes: 2 additions & 1 deletion src/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="b4558cd7-da41-47e7-8969-46c357a1b8b3" Version="1.6" Language="en-US" Publisher="Mads Kristensen" />
<Identity Id="b4558cd7-da41-47e7-8969-46c357a1b8b3" Version="1.7" Language="en-US" Publisher="Mads Kristensen" />
<DisplayName>Voice Commands</DisplayName>
<Description xml:space="preserve">Control Visual Studio using your own voice and with high accuracy</Description>
<MoreInfo>http://visualstudiogallery.msdn.microsoft.com/ce35c120-405a-435b-af2a-52ff24eb2c30</MoreInfo>
Expand All @@ -15,6 +15,7 @@
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="11.0" />
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="12.0" />
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="14.0" />
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="15.0" />
</Installation>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="4.5" />
Expand Down

0 comments on commit 323071c

Please sign in to comment.