Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #67 from jmarolf/add-dotnet-core-shims
Browse files Browse the repository at this point in the history
adding templates
  • Loading branch information
jmarolf committed Oct 2, 2018
2 parents 59dd5d4 + 10a26c3 commit 4aaa045
Show file tree
Hide file tree
Showing 50 changed files with 1,176 additions and 3 deletions.
173 changes: 172 additions & 1 deletion Templates.sln

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@echo off
powershell -ExecutionPolicy ByPass %~dp0build\Build.ps1 -restore -build -deploy -pack %*
powershell -ExecutionPolicy ByPass %~dp0build\Build.ps1 -restore -build -pack -log %*
exit /b %ErrorLevel%
13 changes: 12 additions & 1 deletion build/SignToolData.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,18 @@
"VSSetup/Insertion/Microsoft.VisualStudio.Templates.GetStarted.Web.Setup.vsix",
"VSSetup/Insertion/Microsoft.VisualStudio.Templates.Editorconfig.vsix",
"VSSetup/Insertion/Microsoft.VisualStudio.Templates.Editorconfig.Setup.vsix",
"VSSetup/Insertion/Microsoft.VisualStudio.Templates.Editorconfig.Wizard.Setup.vsix"
"VSSetup/Insertion/Microsoft.VisualStudio.Templates.Editorconfig.Wizard.Setup.vsix",
"VSSetup/Insertion/Microsoft.NetCore.CSharp.ProjectTemplates.Test.vsix",
"VSSetup/Insertion/Microsoft.NetCore.CSharp.ProjectTemplates.vsix",
"VSSetup/Insertion/Microsoft.NetCore.FSharp.ProjectTemplates.Test.vsix",
"VSSetup/Insertion/Microsoft.NetCore.FSharp.ProjectTemplates.Web.vsix",
"VSSetup/Insertion/Microsoft.NetCore.FSharp.ProjectTemplates.vsix",
"VSSetup/Insertion/Microsoft.NetCore.VB.ProjectTemplates.Test.vsix",
"VSSetup/Insertion/Microsoft.NetCore.VB.ProjectTemplates.vsix",
"VSSetup/Insertion/Microsoft.NetStandard.CSharp.ProjectTemplates.vsix",
"VSSetup/Insertion/Microsoft.NetStandard.FSharp.ProjectTemplates.vsix",
"VSSetup/Insertion/Microsoft.NetStandard.VB.ProjectTemplates.vsix",
"VSSetup/Insertion/Microsoft.VisualStudio.NetCore.ProjectTemplates.1.x.vsix"
]
}
],
Expand Down
1 change: 1 addition & 0 deletions build/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
<MicrosoftVisualStudioTextUIVersion>15.0.26606</MicrosoftVisualStudioTextUIVersion>
<MicrosoftVisualStudioUtilitiesVersion>15.0.26606</MicrosoftVisualStudioUtilitiesVersion>
<MicrosoftVisualStudioThreadingVersion>15.3.20</MicrosoftVisualStudioThreadingVersion>
<MicrosoftDotNetProjectTemplatesVersion>1.0.0-beta2-20170629-269</MicrosoftDotNetProjectTemplatesVersion>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- VS Insertion -->
<VisualStudioInsertionComponent>$(MSBuildProjectName)</VisualStudioInsertionComponent>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.DotNet.Common.ProjectTemplates.1.x" Version="$(MicrosoftDotNetProjectTemplatesVersion)" />
<PackageReference Include="Microsoft.DotNet.Test.ProjectTemplates.1.x" Version="$(MicrosoftDotNetProjectTemplatesVersion)" />
</ItemGroup>
<ItemGroup>
<SwrProperty Include="Version=$(VsixVersion)" />
<SwrProperty Include="MSBuildProjectDirectory=$(MSBuildProjectDirectory)" />
<SwrProperty Include="CommonTemplatesNupkg=$(NuGetPackageRoot)Microsoft.DotNet.Common.ProjectTemplates.1.x\$(MicrosoftDotNetProjectTemplatesVersion)\Microsoft.DotNet.Common.ProjectTemplates.1.x.$(MicrosoftDotNetProjectTemplatesVersion).nupkg" />
<SwrProperty Include="TestTemplatesNupkg=$(NuGetPackageRoot)Microsoft.DotNet.Test.ProjectTemplates.1.x\$(MicrosoftDotNetProjectTemplatesVersion)\Microsoft.DotNet.Test.ProjectTemplates.1.x.$(MicrosoftDotNetProjectTemplatesVersion).nupkg" />
</ItemGroup>
<ItemGroup>
<SwrFile Include="*.swr" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[$RootKey$\TemplateEngine\Templates\NetCore\1.x]
"InstalledPath"="$RootFolder$\Common7\IDE\Extensions\Microsoft\Dotnet\Templates\NetCore\1.x"
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
use vs

package name=Microsoft.VisualStudio.NetCore.ProjectTemplates.1.x
version=$(Version)

vs.localizedResources
vs.localizedResource language=en-us
title="Microsoft VisualStudio Managed Project Templates NetCore 1.x"
description="Microsoft VisualStudio Managed Project Templates for NetCore 1.x Projects"

folder "InstallDir:Common7\IDE\Extensions\Microsoft\Dotnet"
file source="$(MSBuildProjectDirectory)\Templates.pkgdef"

folder "InstallDir:Common7\IDE\Extensions\Microsoft\Dotnet\Templates\NetCore\1.x"
file name="Microsoft.DotNet.Common.ProjectTemplates.1.x.1.0.0.nupkg" source="$(CommonTemplatesNupkg)"
file name="Microsoft.DotNet.Test.ProjectTemplates.1.x.1.0.0.nupkg" source="$(TestTemplatesNupkg)"
10 changes: 10 additions & 0 deletions src/Templates/DotnetCore/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project>
<Import Project="..\Directory.Build.props"/>
<PropertyGroup>
<TargetFramework>net461</TargetFramework>

<!-- VS Setup -->
<VisualStudioInsertionComponent>Microsoft.VisualStudio.NetCore.ProjectTemplates</VisualStudioInsertionComponent>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<VSTemplate Version="3.0.0" Type="ProjectGroup" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" xmlns:sdk="http://schemas.microsoft.com/developer/vstemplate-sdkextension/2010">
<TemplateData>
<Name Package="{52CBD135-1F97-2580-011F-C7CD052E44DE}" ID="521"/>
<Description Package="{52CBD135-1F97-2580-011F-C7CD052E44DE}" ID="522"/>
<Icon Package="{52CBD135-1F97-2580-011F-C7CD052E44DE}" ID="531"/>
<ProjectType>CSharp</ProjectType>
<SortOrder>15</SortOrder>
<TemplateID>Microsoft.CSharp.NETCore.UnitTest</TemplateID>
<CreateNewFolder>true</CreateNewFolder>
<CreateInPlace>true</CreateInPlace>
<DefaultName>UnitTestProject</DefaultName>
<ProvideDefaultName>true</ProvideDefaultName>
<PromptForSaveOnCreation>true</PromptForSaveOnCreation>
</TemplateData>
<TemplateContent>
<ProjectCollection/>
<CustomParameters>
<CustomParameter Name="$language$" Value="C#" />
<CustomParameter Name="$uistyle$" Value="none" />
<CustomParameter Name="$groupid$" Value="Microsoft.Test.MSTest" />
</CustomParameters>
</TemplateContent>
<WizardExtension>
<Assembly>Microsoft.VisualStudio.TemplateEngine.Wizard, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</Assembly>
<FullClassName>Microsoft.VisualStudio.TemplateEngine.Wizard.TemplateEngineWizard</FullClassName>
</WizardExtension>
</VSTemplate>
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<VSTemplate Include="XUnitTest.vstemplate">
<OutputSubPath>.NET Core</OutputSubPath>
</VSTemplate>
<VSTemplate Include="XUnitTest.vstemplate">
<OutputSubPath>Test</OutputSubPath>
</VSTemplate>
<VSTemplate Include="MSTest.vstemplate">
<OutputSubPath>.NET Core</OutputSubPath>
</VSTemplate>
<VSTemplate Include="MSTest.vstemplate">
<OutputSubPath>Test</OutputSubPath>
</VSTemplate>
<VSTemplate Include="NUnitTest.vstemplate">
<OutputSubPath>.NET Core</OutputSubPath>
</VSTemplate>
<VSTemplate Include="NUnitTest.vstemplate">
<OutputSubPath>Test</OutputSubPath>
</VSTemplate>
</ItemGroup>
</Project>


Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<VSTemplate Version="3.0.0" Type="ProjectGroup" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" xmlns:sdk="http://schemas.microsoft.com/developer/vstemplate-sdkextension/2010">
<TemplateData>
<Name Package="{860A27C0-B665-47F3-BC12-637E16A1050A}" ID="13" />
<Description Package="{860A27C0-B665-47F3-BC12-637E16A1050A}" ID="14" />
<Icon Package="{52CBD135-1F97-2580-011F-C7CD052E44DE}" ID="531"/>
<ProjectType>CSharp</ProjectType>
<SortOrder>16</SortOrder>
<TemplateID>Microsoft.CSharp.NETCore.NUnitTest</TemplateID>
<CreateNewFolder>true</CreateNewFolder>
<CreateInPlace>true</CreateInPlace>
<DefaultName>NUnitTestProject</DefaultName>
<ProvideDefaultName>true</ProvideDefaultName>
<PromptForSaveOnCreation>true</PromptForSaveOnCreation>
</TemplateData>
<TemplateContent>
<ProjectCollection/>
<CustomParameters>
<CustomParameter Name="$language$" Value="C#" />
<CustomParameter Name="$uistyle$" Value="none" />
<CustomParameter Name="$groupid$" Value="NUnit3.DotNetNew.Template" />
</CustomParameters>
</TemplateContent>
<WizardExtension>
<Assembly>Microsoft.VisualStudio.TemplateEngine.Wizard, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</Assembly>
<FullClassName>Microsoft.VisualStudio.TemplateEngine.Wizard.TemplateEngineWizard</FullClassName>
</WizardExtension>
</VSTemplate>
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<VSTemplate Version="3.0.0" Type="ProjectGroup" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" xmlns:sdk="http://schemas.microsoft.com/developer/vstemplate-sdkextension/2010">
<TemplateData>
<Name Package="{860A27C0-B665-47F3-BC12-637E16A1050A}" ID="11" />
<Description Package="{860A27C0-B665-47F3-BC12-637E16A1050A}" ID="12" />
<Icon Package="{52CBD135-1F97-2580-011F-C7CD052E44DE}" ID="531"/>
<ProjectType>CSharp</ProjectType>
<SortOrder>16</SortOrder>
<TemplateID>Microsoft.CSharp.NETCore.XUnitTest</TemplateID>
<CreateNewFolder>true</CreateNewFolder>
<CreateInPlace>true</CreateInPlace>
<DefaultName>XUnitTestProject</DefaultName>
<ProvideDefaultName>true</ProvideDefaultName>
<PromptForSaveOnCreation>true</PromptForSaveOnCreation>
</TemplateData>
<TemplateContent>
<ProjectCollection/>
<CustomParameters>
<CustomParameter Name="$language$" Value="C#" />
<CustomParameter Name="$uistyle$" Value="none" />
<CustomParameter Name="$groupid$" Value="Microsoft.Test.xUnit" />
</CustomParameters>
</TemplateContent>
<WizardExtension>
<Assembly>Microsoft.VisualStudio.TemplateEngine.Wizard, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</Assembly>
<FullClassName>Microsoft.VisualStudio.TemplateEngine.Wizard.TemplateEngineWizard</FullClassName>
</WizardExtension>
</VSTemplate>
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?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="Microsoft.NetCore.CSharp.ProjectTemplates.Test" Version="|%CurrentProject%;GetBuildVersion|" Language="en-US" Publisher="Microsoft" />
<DisplayName>C# .NETCore Project Templates Test</DisplayName>
<Description>C# project test templates for .NETCore.</Description>
</Metadata>
<Installation SystemComponent="true" Experimental="true">
<InstallationTarget Version="[15.0,]" Id="Microsoft.VisualStudio.Pro" />
<InstallationTarget Version="[15.0,]" Id="Microsoft.VisualStudio.VSWinDesktopExpress" />
<InstallationTarget Version="[15.0,]" Id="Microsoft.VisualStudio.VWDExpress" />
<InstallationTarget Version="[15.0,]" Id="Microsoft.VisualStudio.VSWinExpress" />
</Installation>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,)" DisplayName="Visual Studio core editor" />
<Prerequisite Id="Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine" Version="[15.0,)" DisplayName="ASP.NET templating engine" />
</Prerequisites>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
</Dependencies>
<Assets>
<Asset Type="Microsoft.VisualStudio.ProjectTemplate" Path="XUnitTest" />
<Asset Type="Microsoft.VisualStudio.ProjectTemplate" Path="MSTest" />
<Asset Type="Microsoft.VisualStudio.ProjectTemplate" Path="NUnitTest" />
</Assets>
</PackageManifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8" ?>
<VSTemplate Version="3.0.0" Type="ProjectGroup" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" xmlns:sdk="http://schemas.microsoft.com/developer/vstemplate-sdkextension/2010">
<TemplateData>
<Name Package="{860A27C0-B665-47F3-BC12-637E16A1050A}" ID="9"/>
<Description Package="{860A27C0-B665-47F3-BC12-637E16A1050A}" ID="10"/>
<Icon Package="{FAE04EC1-301F-11d3-BF4B-00C04F79EFBC}" ID="4547" />
<ProjectType>CSharp</ProjectType>
<SortOrder>14</SortOrder>
<NumberOfParentCategoriesToRollUp>0</NumberOfParentCategoriesToRollUp>
<TemplateID>Microsoft.CSharp.NetCore.ClassLibrary</TemplateID>
<CreateNewFolder>true</CreateNewFolder>
<CreateInPlace>true</CreateInPlace>
<DefaultName>ClassLibrary</DefaultName>
<ProvideDefaultName>true</ProvideDefaultName>
<PromptForSaveOnCreation>true</PromptForSaveOnCreation>
</TemplateData>
<TemplateContent>
<ProjectCollection/>
<CustomParameters>
<CustomParameter Name="$language$" Value="C#" />
<CustomParameter Name="$uistyle$" Value="none" />
<CustomParameter Name="$groupid$" Value="Microsoft.Common.Library" />
<CustomParameter Name="$set:baseline$" Value="app" />
</CustomParameters>
</TemplateContent>
<WizardExtension>
<Assembly>Microsoft.VisualStudio.TemplateEngine.Wizard, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</Assembly>
<FullClassName>Microsoft.VisualStudio.TemplateEngine.Wizard.TemplateEngineWizard</FullClassName>
</WizardExtension>
</VSTemplate>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8" ?>
<VSTemplate Version="3.0.0" Type="ProjectGroup" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" xmlns:sdk="http://schemas.microsoft.com/developer/vstemplate-sdkextension/2010">
<TemplateData>
<Name Package="{860A27C0-B665-47F3-BC12-637E16A1050A}" ID="3"/>
<Description Package="{860A27C0-B665-47F3-BC12-637E16A1050A}" ID="4"/>
<Icon>ConsoleApplication.png</Icon>
<ProjectType>CSharp</ProjectType>
<SortOrder>12</SortOrder>
<NumberOfParentCategoriesToRollUp>1</NumberOfParentCategoriesToRollUp>
<TemplateID>Microsoft.CSharp.NETCore.ConsoleApplication</TemplateID>
<CreateNewFolder>true</CreateNewFolder>
<CreateInPlace>true</CreateInPlace>
<DefaultName>ConsoleApp</DefaultName>
<ProvideDefaultName>true</ProvideDefaultName>
<PromptForSaveOnCreation>true</PromptForSaveOnCreation>
</TemplateData>
<TemplateContent>
<ProjectCollection/>
<CustomParameters>
<CustomParameter Name="$language$" Value="C#" />
<CustomParameter Name="$uistyle$" Value="none" />
<CustomParameter Name="$groupid$" Value="Microsoft.Common.Console" />
</CustomParameters>
</TemplateContent>
<WizardExtension>
<Assembly>Microsoft.VisualStudio.TemplateEngine.Wizard, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</Assembly>
<FullClassName>Microsoft.VisualStudio.TemplateEngine.Wizard.TemplateEngineWizard</FullClassName>
</WizardExtension>
</VSTemplate>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<VSTemplate Include="ConsoleApplication.vstemplate">
<OutputSubPath>.NET Core</OutputSubPath>
</VSTemplate>
<VSTemplate Include="ClassLibrary.vstemplate">
<OutputSubPath>.NET Core</OutputSubPath>
</VSTemplate>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?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="Microsoft.NetCore.CSharp.ProjectTemplates" Version="|%CurrentProject%;GetBuildVersion|" Language="en-US" Publisher="Microsoft" />
<DisplayName>C# .NETCore Project Templates</DisplayName>
<Description>C# project templates for .NETCore.</Description>
</Metadata>
<Installation SystemComponent="true" Experimental="true">
<InstallationTarget Version="[15.0,]" Id="Microsoft.VisualStudio.Pro" />
<InstallationTarget Version="[15.0,]" Id="Microsoft.VisualStudio.VSWinDesktopExpress" />
<InstallationTarget Version="[15.0,]" Id="Microsoft.VisualStudio.VWDExpress" />
<InstallationTarget Version="[15.0,]" Id="Microsoft.VisualStudio.VSWinExpress" />
</Installation>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,)" DisplayName="Visual Studio core editor" />
<Prerequisite Id="Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine" Version="[15.0,)" DisplayName="ASP.NET templating engine" />
</Prerequisites>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
</Dependencies>
<Assets>
<Asset Type="Microsoft.VisualStudio.ProjectTemplate" Path="ClassLibrary" />
<Asset Type="Microsoft.VisualStudio.ProjectTemplate" Path="ConsoleApplication" />
</Assets>
</PackageManifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<VSTemplate Version="3.0.0" Type="ProjectGroup" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" xmlns:sdk="http://schemas.microsoft.com/developer/vstemplate-sdkextension/2010">
<TemplateData>
<Name Package="{52CBD135-1F97-2580-011F-C7CD052E44DE}" ID="521"/>
<Description Package="{52CBD135-1F97-2580-011F-C7CD052E44DE}" ID="522"/>
<Icon Package="{91A04A73-4F2C-4E7C-AD38-C1A68E7DA05C}" ID="4018" />
<ProjectType>FSharp</ProjectType>
<SortOrder>15</SortOrder>
<TemplateID>Microsoft.FSharp.NETCore.UnitTest</TemplateID>
<CreateNewFolder>true</CreateNewFolder>
<CreateInPlace>true</CreateInPlace>
<DefaultName>UnitTestProject</DefaultName>
<ProvideDefaultName>true</ProvideDefaultName>
<PromptForSaveOnCreation>true</PromptForSaveOnCreation>
</TemplateData>
<TemplateContent>
<ProjectCollection/>
<CustomParameters>
<CustomParameter Name="$language$" Value="F#" />
<CustomParameter Name="$uistyle$" Value="none" />
<CustomParameter Name="$groupid$" Value="Microsoft.Test.MSTest" />
</CustomParameters>
</TemplateContent>
<WizardExtension>
<Assembly>Microsoft.VisualStudio.TemplateEngine.Wizard, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</Assembly>
<FullClassName>Microsoft.VisualStudio.TemplateEngine.Wizard.TemplateEngineWizard</FullClassName>
</WizardExtension>
</VSTemplate>
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<VSTemplate Include="XUnitTest.vstemplate">
<OutputSubPath>.NET Core</OutputSubPath>
</VSTemplate>
<VSTemplate Include="XUnitTest.vstemplate">
<OutputSubPath>Test</OutputSubPath>
</VSTemplate>
<VSTemplate Include="MSTest.vstemplate">
<OutputSubPath>.NET Core</OutputSubPath>
</VSTemplate>
<VSTemplate Include="MSTest.vstemplate">
<OutputSubPath>Test</OutputSubPath>
</VSTemplate>
<VSTemplate Include="NUnitTest.vstemplate">
<OutputSubPath>.NET Core</OutputSubPath>
</VSTemplate>
<VSTemplate Include="NUnitTest.vstemplate">
<OutputSubPath>Test</OutputSubPath>
</VSTemplate>
</ItemGroup>
</Project>
Loading

0 comments on commit 4aaa045

Please sign in to comment.