forked from Lombiq/NPM-Targets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLombiq.Npm.Targets.csproj
34 lines (29 loc) · 1.38 KB
/
Lombiq.Npm.Targets.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<DefaultItemExcludes>$(DefaultItemExcludes);.git*;node_modules\**</DefaultItemExcludes>
<IsPublishable>false</IsPublishable>
</PropertyGroup>
<PropertyGroup>
<Title>Lombiq NPM MSBuild Targets</Title>
<Authors>Lombiq Technologies</Authors>
<Copyright>Copyright © 2020, Lombiq Technologies Ltd.</Copyright>
<Description>Provides automatic NPM package installation and a custom NPM command execution before building a .NET project. See the project website for detailed documentation.</Description>
<PackageIcon>NuGetIcon.png</PackageIcon>
<PackageTags>Lombiq;NPM;Node.js;MSBuild</PackageTags>
<RepositoryUrl>https://github.com/Lombiq/NPM-Targets</RepositoryUrl>
<PackageProjectUrl>https://github.com/Lombiq/NPM-Targets</PackageProjectUrl>
<PackageLicenseFile>Licence.md</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="Licence.md" Pack="true" PackagePath="" />
<None Include="Readme.md" />
<None Include="NuGetIcon.png" Pack="true" PackagePath="" />
<None Include="build\**" Pack="true" PackagePath="build\" />
<None Include="*.props" Pack="true" PackagePath="" />
<None Include="*.targets" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<None Remove="node_modules\**" />
</ItemGroup>
</Project>