-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathWaher.Utility.TextDiff.csproj
More file actions
42 lines (37 loc) · 1.85 KB
/
Waher.Utility.TextDiff.csproj
File metadata and controls
42 lines (37 loc) · 1.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Authors>Peter Waher</Authors>
<Company>Waher Data AB</Company>
<Product>Waher.IoTGateway</Product>
<Description>Command-line tool that compares two text files and outputs the differences between them.</Description>
<Copyright>Copyright © Waher Data AB 2024-2026. All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/PeterWaher/IoTGateway/tree/master/Utilities/Waher.Utility.TextDiff</PackageProjectUrl>
<PackageIcon>Icon_64x64.png</PackageIcon>
<RepositoryUrl>https://github.com/PeterWaher/IoTGateway</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<AssemblyVersion>1.0.0</AssemblyVersion>
<RuntimeIdentifiers>win-x86;win-x64;win-arm64;osx-x64;osx-arm64;linux-x64;linux-arm64</RuntimeIdentifiers>
<RuntimeIdentifier Condition="'$(OS)' == 'Windows_NT'">win-x86</RuntimeIdentifier>
<RuntimeIdentifier Condition="'$(OS)' == 'Unix'">osx-arm64</RuntimeIdentifier>
<RuntimeIdentifier Condition="'$(OS)' == 'Linux'">linux-x64</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\Images\Icon_64x64.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Content\Waher.Content\Waher.Content.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Console\Waher.Runtime.Console.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Text\Waher.Runtime.Text.csproj" />
</ItemGroup>
</Project>