-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFolderDiffIL4DotNet.Core.csproj
More file actions
38 lines (33 loc) · 1.94 KB
/
Copy pathFolderDiffIL4DotNet.Core.csproj
File metadata and controls
38 lines (33 loc) · 1.94 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<!-- NuGet package metadata / NuGet パッケージメタデータ -->
<PropertyGroup>
<PackageId>FolderDiffIL4DotNet.Core</PackageId>
<Authors>Widthdom</Authors>
<Description>Core utilities for FolderDiffIL4DotNet — file comparison (SHA256, line-by-line), .NET assembly detection (PE/CLR header parsing), Myers diff algorithm, encoding detection, path validation, and process helpers. Designed for build-diff and release-validation tooling.</Description>
<PackageTags>diff;file-comparison;dotnet;il;sha256;myers-diff;encoding-detection;release-validation</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Widthdom/FolderDiffIL4DotNet</PackageProjectUrl>
<RepositoryUrl>https://github.com/Widthdom/FolderDiffIL4DotNet.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>PACKAGE_README.md</PackageReadmeFile>
<Copyright>Copyright (c) 2025 Widthdom</Copyright>
<!-- Include XML documentation in the NuGet package / XML ドキュメントをパッケージに含める -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="PACKAGE_README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<!-- Nerdbank.GitVersioning: version derived from version.json / version.json からバージョンを自動算出 -->
<PackageReference Include="Nerdbank.GitVersioning" Version="3.10.91" PrivateAssets="All" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="10.0.10" />
</ItemGroup>
</Project>