Skip to content

Commit

Permalink
MSTestV2 VB Templates (#175)
Browse files Browse the repository at this point in the history
* Base commit for Desktop and UWP VB templates

* Fixing build issues

* PR comments
  • Loading branch information
jayaranigarg committed May 4, 2017
1 parent 1a9b228 commit 069dd94
Show file tree
Hide file tree
Showing 113 changed files with 2,531 additions and 11 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<TestFxRoot Condition="$(TestFxRoot) == ''">..\..\</TestFxRoot>
<TestFxRoot Condition="$(TestFxRoot) == ''">..\..\..\</TestFxRoot>
</PropertyGroup>
<Import Project="$(TestFxRoot)scripts\build\TestFx.Settings.targets" />
<PropertyGroup>
Expand All @@ -18,8 +18,8 @@
<ProjectGuid>{9E08BE4A-D3C8-4E8D-AFBE-FA571F878464}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MSTestDesktopVSIX</RootNamespace>
<AssemblyName>MSTestDesktopVSIX</AssemblyName>
<RootNamespace>MSTestDesktopCSharp</RootNamespace>
<AssemblyName>MSTestDesktopCSharp</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<GeneratePkgDefFile>false</GeneratePkgDefFile>
<IncludeAssemblyInVSIXContainer>false</IncludeAssemblyInVSIXContainer>
Expand Down
File renamed without changes.
File renamed without changes.
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="mstestProjectTemplate" Version="15.0.26125.00" Language="en-US" Publisher="Microsoft" />
<Identity Id="mstestProjectTemplate" Version="15.0.26127.00" Language="en-US" Publisher="Microsoft" />
<DisplayName>MSTest V2 Templates</DisplayName>
<Description xml:space="preserve">Provides Visual Studio project template for MSTest V2.</Description>
<License>DesktopTemplateLicense.rtf</License>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<TestFxRoot Condition="$(TestFxRoot) == ''">..\..\</TestFxRoot>
<TestFxRoot Condition="$(TestFxRoot) == ''">..\..\..\</TestFxRoot>
</PropertyGroup>
<Import Project="$(TestFxRoot)scripts\build\TestFx.Settings.targets" />
<PropertyGroup>
Expand All @@ -18,8 +18,8 @@
<ProjectGuid>{11207E9D-1AE5-41B2-A04A-5F2BC1DCD5E7}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MSTestUWPVSIX</RootNamespace>
<AssemblyName>MSTestUWPVSIX</AssemblyName>
<RootNamespace>MSTestUWPCSharp</RootNamespace>
<AssemblyName>MSTestUWPCSharp</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<GeneratePkgDefFile>false</GeneratePkgDefFile>
<IncludeAssemblyInVSIXContainer>false</IncludeAssemblyInVSIXContainer>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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="mstestUniversalProjectTemplate" Version="15.0.26126.00" Language="en-US" Publisher="Microsoft" />
<Identity Id="mstestUniversalProjectTemplate" Version="15.0.26127.00" Language="en-US" Publisher="Microsoft" />
<DisplayName>MSTest V2 Templates (Universal Windows)</DisplayName>
<Description xml:space="preserve">Provides Visual Studio project template for MSTest V2 (For UWP applications).</Description>
<License>UniversalTemplateLicense.rtf</License>
Expand Down
18 changes: 15 additions & 3 deletions Templates/MSTestTemplates.sln
Original file line number Diff line number Diff line change
@@ -1,18 +1,30 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26009.0
VisualStudioVersion = 15.0.26403.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MSTestDesktopVSIX", "Desktop\MSTestDesktopVSIX.csproj", "{9E08BE4A-D3C8-4E8D-AFBE-FA571F878464}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MSTestDesktopVB", "VisualBasic\Desktop\MSTestDesktopVB.csproj", "{1AFFAE1C-BD70-4201-B8C8-3862F56E784B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MSTestUWPVSIX", "UWP\MSTestUWPVSIX.csproj", "{11207E9D-1AE5-41B2-A04A-5F2BC1DCD5E7}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MSTestUWPVB", "VisualBasic\UWP\MSTestUWPVB.csproj", "{49460594-BA56-4348-82AF-7B517263630B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MSTestDesktopCSharp", "CSharp\Desktop\MSTestDesktopCSharp.csproj", "{9E08BE4A-D3C8-4E8D-AFBE-FA571F878464}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MSTestUWPCSharp", "CSharp\UWP\MSTestUWPCSharp.csproj", "{11207E9D-1AE5-41B2-A04A-5F2BC1DCD5E7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1AFFAE1C-BD70-4201-B8C8-3862F56E784B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1AFFAE1C-BD70-4201-B8C8-3862F56E784B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1AFFAE1C-BD70-4201-B8C8-3862F56E784B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1AFFAE1C-BD70-4201-B8C8-3862F56E784B}.Release|Any CPU.Build.0 = Release|Any CPU
{49460594-BA56-4348-82AF-7B517263630B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{49460594-BA56-4348-82AF-7B517263630B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{49460594-BA56-4348-82AF-7B517263630B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{49460594-BA56-4348-82AF-7B517263630B}.Release|Any CPU.Build.0 = Release|Any CPU
{9E08BE4A-D3C8-4E8D-AFBE-FA571F878464}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9E08BE4A-D3C8-4E8D-AFBE-FA571F878464}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9E08BE4A-D3C8-4E8D-AFBE-FA571F878464}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
Loading

0 comments on commit 069dd94

Please sign in to comment.