-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrendstask.csproj
More file actions
34 lines (28 loc) · 1.33 KB
/
frendstask.csproj
File metadata and controls
34 lines (28 loc) · 1.33 KB
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
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>0.0.18</PackageVersion>
<PackageId>frendstask</PackageId>
<Title>Template for creating frends tasks.</Title>
<Authors>HiQ Finland</Authors>
<Description>Template for creating frends tasks.</Description>
<PackageProjectUrl>https://github.com/CommunityHiQ/Frends.Community.Echo</PackageProjectUrl>
<PackageTags>dotnet-new;templates;frends</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<NoDefaultExcludes>true</NoDefaultExcludes>
<!-- Setting IncludeBuildOutput to false results in false NU518 warning: https://docs.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu5128#scenario-2
https://github.com/NuGet/Home/issues/8713 Therefore it is supressed -->
<NoWarn>$(NoWarn);NU5128</NoWarn>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="Frends.Community.Echo\**\*" Exclude="Frends.Community.Echo\**\bin\**;Frends.Community.Echo\**\obj\**;**\.git\**;**\.vs\**" />
<Compile Remove="**\*" />
<Content Include="readme.txt">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</Content>
</ItemGroup>
</Project>