-
Notifications
You must be signed in to change notification settings - Fork 4
/
VueStarterTemplate.csproj
26 lines (23 loc) · 1.03 KB
/
VueStarterTemplate.csproj
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
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<NoDefaultExcludes>true</NoDefaultExcludes>
<PackageReadmeFile>content/templates/vue/README.md</PackageReadmeFile>
<PackageIcon>content/templates/vue/icon.png</PackageIcon>
<PackageType>Template</PackageType>
<PackageVersion>1.1.8</PackageVersion>
<PackageId>Vue.Web.Starter</PackageId>
<Title>ASP.NET Core with Vue 3</Title>
<Authors>Rob Conery</Authors>
<Description>ASP.NET Core Web Application with Vue 3</Description>
<PackageTags>dotnet-new;templates;mvc;web;vue</PackageTags>
<TargetFramework>net7.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**;templates\**\node_modules\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>