forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaScriptEngineSwitcher.V8.csproj
More file actions
74 lines (62 loc) · 3.19 KB
/
JavaScriptEngineSwitcher.V8.csproj
File metadata and controls
74 lines (62 loc) · 3.19 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Product>JS Engine Switcher: V8</Product>
<VersionPrefix>3.21.3</VersionPrefix>
<TargetFrameworks>net45;net471;netstandard2.1;netcoreapp3.1;net5.0</TargetFrameworks>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);CS1591</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.V8 contains adapter `V8JsEngine` (wrapper for the Microsoft ClearScript.V8 (http://github.com/Microsoft/ClearScript) version 7.4.2).
This package does not contain the native ClearScript.V8 assemblies. Therefore, you need to choose and install the most appropriate package(s) for your platform. The following packages are available:
* Microsoft.ClearScript.V8.Native.win-x86
* Microsoft.ClearScript.V8.Native.win-x64
* Microsoft.ClearScript.V8.Native.win-arm64
* Microsoft.ClearScript.V8.Native.linux-x64
* Microsoft.ClearScript.V8.Native.linux-arm
* Microsoft.ClearScript.V8.Native.linux-arm64
* Microsoft.ClearScript.V8.Native.osx-x64
* Microsoft.ClearScript.V8.Native.osx-arm64</Description>
<PackageTags>$(PackageCommonTags);V8;ClearScript</PackageTags>
<PackageIconFullPath>../../Icons/JavaScriptEngineSwitcher_V8_Logo128x128.png</PackageIconFullPath>
<PackageReleaseNotes>Microsoft ClearScript.V8 was updated to version 7.4.2.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<Reference Condition=" '$(TargetFramework)' == 'net45' Or '$(TargetFramework)' == 'net471' " Include="Microsoft.CSharp" Pack="false" />
<PackageReference Include="AdvancedStringBuilder" Version="0.1.0" />
<PackageReference Include="Microsoft.ClearScript.V8" Version="7.4.2" />
<PackageReference Include="ResxToCs.MSBuild" Version="1.0.0-alpha6" PrivateAssets="All" />
<ProjectReference Include="../JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="../../Licenses/advanced-string-builder-license.txt">
<PackagePath>advanced-string-builder-license.txt</PackagePath>
<Pack>true</Pack>
<Visible>false</Visible>
</None>
<None Include="../../Licenses/clearscript-license.txt">
<PackagePath>clearscript-license.txt</PackagePath>
<Pack>true</Pack>
<Visible>false</Visible>
</None>
<None Include="../../Licenses/v8-license.txt">
<PackagePath>v8-license.txt</PackagePath>
<Pack>true</Pack>
<Visible>false</Visible>
</None>
<Content Include="readme.txt">
<PackagePath>readme.txt</PackagePath>
<Pack>true</Pack>
</Content>
</ItemGroup>
<Target Name="ConvertResxToCs" BeforeTargets="BeforeCompile">
<ResxToCsTask InputDirectory="./Resources/" Namespace="$(RootNamespace).Resources" InternalAccessModifier="true" />
</Target>
</Project>