-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathWaher.WebService.Script.csproj
More file actions
59 lines (59 loc) · 3.05 KB
/
Waher.WebService.Script.csproj
File metadata and controls
59 lines (59 loc) · 3.05 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
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Description>Contains web services for script execution.</Description>
<Copyright>Copyright © Waher Data AB 2016-2026. All rights reserved.</Copyright>
<Authors>Peter Waher</Authors>
<Company>Waher Data AB</Company>
<Product>Waher.IoTGateway</Product>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl>https://github.com/PeterWaher/IoTGateway/tree/master/WebServices/Waher.WebService.Script</PackageProjectUrl>
<PackageIconUrl></PackageIconUrl>
<RepositoryUrl>https://github.com/PeterWaher/IoTGateway</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>script execution web service</PackageTags>
<NeutralLanguage>English</NeutralLanguage>
<AssemblyVersion>2.1.5</AssemblyVersion>
<FileVersion>2.1.5</FileVersion>
<Version>2.1.5</Version>
<FileUpgradeFlags>40</FileUpgradeFlags>
<UpgradeBackupLocation>C:\My Projects\IoTGateway\Backup\WebServices\Waher.WebService.Script\</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.Markdown\Waher.Content.Markdown.csproj" />
<ProjectReference Include="..\..\Content\Waher.Content.Xml\Waher.Content.Xml.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="..\..\Script\Waher.Script.Graphs\Waher.Script.Graphs.csproj" />
<ProjectReference Include="..\..\Script\Waher.Script.Statistics\Waher.Script.Statistics.csproj" />
<ProjectReference Include="..\..\Script\Waher.Script\Waher.Script.csproj" />
<ProjectReference Include="..\..\Security\Waher.Security.LoginMonitor\Waher.Security.LoginMonitor.csproj" />
<ProjectReference Include="..\..\Security\Waher.Security\Waher.Security.csproj" />
<ProjectReference Include="..\..\Waher.IoTGateway\Waher.IoTGateway.csproj" />
</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>
</Project>