-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFScript.Runtime.fsproj
More file actions
52 lines (46 loc) · 1.96 KB
/
FScript.Runtime.fsproj
File metadata and controls
52 lines (46 loc) · 1.96 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>true</IsPackable>
<PackageId>MagnusOpera.FScript.Runtime</PackageId>
<Version Condition=" '$(Version)' == '' ">0.0.0</Version>
<Authors>Magnus Opera</Authors>
<Title>FScript Runtime</Title>
<Description>Runtime externs and host integration layer for FScript.</Description>
<PackageTags>fscript;runtime;externs;host;interpreter</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>FScriptIcon.png</PackageIcon>
<PackageProjectUrl>https://github.com/MagnusOpera/FScript</PackageProjectUrl>
<RepositoryUrl>https://github.com/MagnusOpera/FScript.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<Compile Include="Types.fs" />
<Compile Include="ExternProvider.fs" />
<Compile Include="Common.fs" />
<Compile Include="Decode.fs" />
<Compile Include="FsExterns.fs" />
<Compile Include="RegexExterns.fs" />
<Compile Include="HashExterns.fs" />
<Compile Include="GuidExterns.fs" />
<Compile Include="PrintExterns.fs" />
<Compile Include="JsonExterns.fs" />
<Compile Include="XmlExterns.fs" />
<Compile Include="Registry.fs" />
<Compile Include="ExportSignatures.fs" />
<Compile Include="ScriptHost.fs" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\LICENSE" Pack="true" PackagePath="\" />
<None Include="..\..\NUGET.md" Pack="true" PackagePath="README.md" />
<None Include="..\..\FScriptIcon.png" Pack="true" PackagePath="\" Link="FScriptIcon.png" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FScript.Language\FScript.Language.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="10.0.3" />
</ItemGroup>
</Project>