-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathWaher.Things.Semantic.csproj
More file actions
69 lines (62 loc) · 3.12 KB
/
Copy pathWaher.Things.Semantic.csproj
File metadata and controls
69 lines (62 loc) · 3.12 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Authors>Peter Waher</Authors>
<Company>Waher Data AB</Company>
<Product>Waher.IoTGateway</Product>
<Description>Publishes nodes representing Semantic Web devices. It also makes other non-semantic metering devices available via semantic web interfaces, such as SPARQL queries.</Description>
<Copyright>Copyright © Waher Data AB 2023-2026. All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/PeterWaher/IoTGateway/tree/master/Things/Waher.Things.Semantic</PackageProjectUrl>
<PackageIcon>Icon_64x64.png</PackageIcon>
<RepositoryUrl>https://github.com/PeterWaher/IoTGateway</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>IoT WoT Semantic Web</PackageTags>
<AssemblyVersion>3.3.2</AssemblyVersion>
<FileVersion>3.3.2</FileVersion>
<Version>3.3.2</Version>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="Language\Waher.Things.Semantic.en.lng" />
</ItemGroup>
<ItemGroup>
<Content Include="Language\Waher.Things.Semantic.en.lng">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Include="..\..\Images\Icon_64x64.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Content\Waher.Content.Semantic\Waher.Content.Semantic.csproj" />
<ProjectReference Include="..\..\Content\Waher.Content\Waher.Content.csproj" />
<ProjectReference Include="..\..\Events\Waher.Events\Waher.Events.csproj" />
<ProjectReference Include="..\..\Networking\Waher.Networking.HTTP\Waher.Networking.HTTP.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Inventory\Waher.Runtime.Inventory.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Language\Waher.Runtime.Language.csproj" />
<ProjectReference Include="..\..\Script\Waher.Script.Persistence\Waher.Script.Persistence.csproj" />
<ProjectReference Include="..\..\Script\Waher.Script\Waher.Script.csproj" />
<ProjectReference Include="..\..\Waher.IoTGateway\Waher.IoTGateway.csproj" />
<ProjectReference Include="..\Waher.Things.Ip\Waher.Things.Ip.csproj" />
<ProjectReference Include="..\Waher.Things.Metering\Waher.Things.Metering.csproj" />
<ProjectReference Include="..\Waher.Things.Virtual\Waher.Things.Virtual.csproj" />
<ProjectReference Include="..\Waher.Things\Waher.Things.csproj" />
</ItemGroup>
</Project>