-
Notifications
You must be signed in to change notification settings - Fork 3
/
Nethereum.Templates.Pack.csproj
37 lines (35 loc) · 1.66 KB
/
Nethereum.Templates.Pack.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
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>2.0</PackageVersion>
<PackageId>Nethereum.Templates.Pack</PackageId>
<Title>Nethereum Templates</Title>
<Authors>Juan Blanco</Authors>
<Description>Templates to use with Netheruem.</Description>
<PackageTags>dotnet-new;templates;nethereum;ethereum;siwe;metamask;smart contract;NFTs;ERC20,ERC721, ERC1155;blazor;</PackageTags>
<PackageIconUrl>https://raw.githubusercontent.com/Nethereum/Nethereum/master/logos/logo64x64.png</PackageIconUrl>
<PackageIcon>images\logo64x64.png</PackageIcon>
<PackageProjectUrl>https://nethereum.com</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Nethereum/Nethereum</RepositoryUrl>
<Copyright>Nethereum.com (Juan Blanco) 2015-2023</Copyright>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
</PropertyGroup>
<PropertyGroup>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Condition="Exists('LICENSE.md')" Include="LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)"/>
</ItemGroup>
<ItemGroup>
<None Condition="Exists('images\logo64x64.png')" Include="images\logo64x64.png" Pack="true" Visible="false" PackagePath="images\logo64x64.png" />
</ItemGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>