-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathWaher.Runtime.IO.csproj
47 lines (45 loc) · 1.96 KB
/
Waher.Runtime.IO.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<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>
<Product>Waher.IoTGateway</Product>
<Description>Class library that contains a small set of IO extensions and tools simplifying stream, file, string and certificate management.</Description>
<Copyright>Copyright © Waher Data AB 2016-2025. All rights reserved.</Copyright>
<PackageLicenseUrl />
<PackageProjectUrl>https://github.com/PeterWaher/IoTGateway/tree/master/Runtime/Waher.Runtime.IO</PackageProjectUrl>
<RepositoryUrl>https://github.com/PeterWaher/IoTGateway</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>IO extensions streams files strings certificates</PackageTags>
<NeutralLanguage>English</NeutralLanguage>
<AssemblyVersion>1.0.1</AssemblyVersion>
<FileVersion>1.0.1</FileVersion>
<Version>1.0.1</Version>
<PackageIconUrl />
<FileUpgradeFlags>40</FileUpgradeFlags>
<UpgradeBackupLocation>C:\My Projects\IoTGateway\Backup\Runtime\Waher.Runtime.IO\</UpgradeBackupLocation>
<OldToolsVersion>2.0</OldToolsVersion>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>Icon_64x64.png</PackageIcon>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\Images\Icon_64x64.png" Link="Icon_64x64.png">
<PackagePath></PackagePath>
<Pack>True</Pack>
</None>
<None Include="..\..\LICENSE.txt" Link="LICENSE.txt">
<PackagePath></PackagePath>
<Pack>True</Pack>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Waher.Runtime.Inventory\Waher.Runtime.Inventory.csproj" />
</ItemGroup>
</Project>