forked from stavroskasidis/BlazorWithIdentity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
templatepack.csproj
31 lines (26 loc) · 1.47 KB
/
templatepack.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
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<Version>1.3.1</Version>
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/stavroskasidis/BlazorWithIdentity</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/stavroskasidis/BlazorWithIdentity/blob/master/README.md</PackageReleaseNotes>
<PackageId>BlazorWithIdentity.Template</PackageId>
<Title>Blazor With Identity Template</Title>
<Authors>Stavros Kasidis (AkiraGTX)</Authors>
<Description>Templates to use when creating a blazor hosted application with microsoft's cookie based Identity.</Description>
<PackageTags>dotnet-new;templates;blazor;blazor-identity;blazor-cookie</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
</PropertyGroup>
<ItemGroup>
<Content Include="template\**\*" Exclude="template\**\bin\**;template\**\obj\**;**\*.db;**\*.pubxml;template\.vs\**;template\**\*.csproj.user;**\PublishProfiles\**;**\*.json.user" />
<Compile Remove="**\*" />
<None Include="LICENSE.txt" Pack="true" PackagePath="LICENSE.txt"/>
</ItemGroup>
</Project>