-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathWaher.Script.Persistence.csproj
More file actions
68 lines (67 loc) · 3.85 KB
/
Waher.Script.Persistence.csproj
File metadata and controls
68 lines (67 loc) · 3.85 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
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Authors>Peter Waher</Authors>
<Company>Waher Data AB</Company>
<Description>Contains script extensions for the persistence layer. Allows for searching for, creating, updating and deleting objects in the object database from script. Includes support for SQL queries against the object database persistence layer, and SPARQL queries for semantic-web queries using graph notation, linked data and graph databases.
Script Syntax:
https://waher.se/Script.md#accessToObjectDatabase
https://waher.se/Script.md#persistenceRelatedFunctionsWaherScriptPersistence</Description>
<Product>Waher.IoTGateway</Product>
<Copyright>Copyright © Waher Data AB 2017-2026. All rights reserved.</Copyright>
<PackageLicenseUrl />
<PackageProjectUrl>https://github.com/PeterWaher/IoTGateway/tree/master/Script/Waher.Script.Persistence</PackageProjectUrl>
<RepositoryUrl>https://github.com/PeterWaher/IoTGateway</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>script execution parsing persistence SQL</PackageTags>
<NeutralLanguage>English</NeutralLanguage>
<AssemblyVersion>2.13.1</AssemblyVersion>
<FileVersion>2.13.1</FileVersion>
<Version>2.13.1</Version>
<PackageIconUrl />
<FileUpgradeFlags>40</FileUpgradeFlags>
<UpgradeBackupLocation>C:\My Projects\IoTGateway\Backup\Script\Waher.Script.Persistence\</UpgradeBackupLocation>
<OldToolsVersion>2.0</OldToolsVersion>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>Icon_64x64.png</PackageIcon>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Content\Waher.Content.Semantic\Waher.Content.Semantic.csproj" />
<ProjectReference Include="..\..\Content\Waher.Content.Xml\Waher.Content.Xml.csproj" />
<ProjectReference Include="..\..\Content\Waher.Content\Waher.Content.csproj" />
<ProjectReference Include="..\..\Persistence\Waher.Persistence.XmlLedger\Waher.Persistence.XmlLedger.csproj" />
<ProjectReference Include="..\..\Persistence\Waher.Persistence\Waher.Persistence.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Counters\Waher.Runtime.Counters.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.HashStore\Waher.Runtime.HashStore.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Inventory\Waher.Runtime.Inventory.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Settings\Waher.Runtime.Settings.csproj" />
<ProjectReference Include="..\..\Things\Waher.Things\Waher.Things.csproj" />
<ProjectReference Include="..\Waher.Script.Content\Waher.Script.Content.csproj" />
<ProjectReference Include="..\Waher.Script.Cryptography\Waher.Script.Cryptography.csproj" />
<ProjectReference Include="..\Waher.Script.Statistics\Waher.Script.Statistics.csproj" />
<ProjectReference Include="..\Waher.Script\Waher.Script.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\Images\Icon_64x64.png">
<Pack>True</Pack>
<PackagePath />
</None>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath />
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="System.Xml.XmlDocument" Version="4.3.0" />
<PackageReference Include="System.Xml.XPath" Version="4.3.0" />
<PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.7.0" />
</ItemGroup>
</Project>