-
Notifications
You must be signed in to change notification settings - Fork 2
/
Lombiq.Npm.Targets.csproj
33 lines (28 loc) · 1.36 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
<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>Lombiq NPM MSBuild Targets: 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>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<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>