-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGeeksCoreLibrary.Modules.ScriptInterpreters.JavaScript.csproj
More file actions
40 lines (36 loc) · 1.58 KB
/
GeeksCoreLibrary.Modules.ScriptInterpreters.JavaScript.csproj
File metadata and controls
40 lines (36 loc) · 1.58 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<OutputType>Library</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<LangVersion>default</LangVersion>
<Authors>Happy Horizon B.V.</Authors>
<Description>JavaScript plugin for the script interpreters module of the GeeksCoreLibrary.</Description>
<Version>5.3.2601.1</Version>
<AssemblyVersion>5.3.2601.1</AssemblyVersion>
<FileVersion>5.3.2601.1</FileVersion>
<PackageDescription>JavaScript plugin for the script interpreters module of the GeeksCoreLibrary.</PackageDescription>
<RepositoryUrl>https://github.com/happy-geeks/geeks-core-library-javascript.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<EnablePackageValidation>true</EnablePackageValidation>
<IsPackable>true</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GeeksCoreLibrary" Version="5.3.2601.1" />
<PackageReference Include="Jint" Version="4.5.0" />
</ItemGroup>
<!-- Copy the LICENSE and README.md files to the package -->
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath>.\</PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>.\</PackagePath>
</None>
</ItemGroup>
</Project>