forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaScriptEngineSwitcher.Node.csproj
More file actions
58 lines (48 loc) · 2.44 KB
/
JavaScriptEngineSwitcher.Node.csproj
File metadata and controls
58 lines (48 loc) · 2.44 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Product>JS Engine Switcher: Node</Product>
<VersionPrefix>3.21.2</VersionPrefix>
<TargetFrameworks>net461;netstandard2.0;netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
<OutputType>Library</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);CS1591;NU5104</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DisableDefaultResxToCsConversionTarget>true</DisableDefaultResxToCsConversionTarget>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
</PropertyGroup>
<Import Project="../../build/common.props" />
<Import Project="../../build/strong-name-signing.props" />
<Import Project="../../build/nuget-for-dotnet-lib.props" />
<PropertyGroup>
<Description>JavaScriptEngineSwitcher.Node contains adapter `NodeJsEngine` (wrapper for the Jering.Javascript.NodeJS (https://github.com/JeringTech/Javascript.NodeJS) version 7.0.0 Beta 4).
This package does not contain the `node.exe`. Therefore, you need to install the Node.js (https://nodejs.org) and add the `node.exe`'s directory to the `Path` environment variable (automatically done by the official installer).</Description>
<PackageTags>$(PackageCommonTags);Node.js;Jering.Javascript.NodeJS</PackageTags>
<PackageIconFullPath>../../Icons/JavaScriptEngineSwitcher_Node_Logo128x128.png</PackageIconFullPath>
<PackageReleaseNotes>1. Jering.Javascript.NodeJS was updated to version 7.0.0 Beta 4;
2. Added support of .NET 7.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Jering.Javascript.NodeJS" Version="7.0.0-beta.4" />
<ProjectReference Include="../JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="../../Licenses/jering-javascript-nodejs-license.txt">
<PackagePath>jering-javascript-nodejs-license.txt</PackagePath>
<Pack>true</Pack>
<Visible>false</Visible>
</None>
<None Include="../../Licenses/nodejs-license.txt">
<PackagePath>nodejs-license.txt</PackagePath>
<Pack>true</Pack>
<Visible>false</Visible>
</None>
<Content Include="readme.txt">
<PackagePath>readme.txt</PackagePath>
<Pack>true</Pack>
</Content>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources/engine-helpers.js" />
</ItemGroup>
</Project>