-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNuGet.vbproj
25 lines (22 loc) · 1.01 KB
/
NuGet.vbproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0.0</PackageVersion>
<PackageId>Intexx.Templates</PackageId>
<Title>Project & item templates for VB.NET</Title>
<Authors>InteXX</Authors>
<Copyright>2020</Copyright>
<Description>Templates to use when creating projects & items in VB.NET</Description>
<PackageTags>dotnet-new;templates</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/InteXX/Templates</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<Content Include="**\*" Exclude="*;**\AzureFunction.svg;**\Template.ico;**\Installer\**;**\Template\**;**\bin\**;**\obj\**;.git\**;.vs\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>