Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions diffutil/Icod.DiffUtils.DiffUtil.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@
<OutputPath>..\bin\$(Configuration)\</OutputPath>
<AssemblyName>diffutil</AssemblyName>
<RootNamespace>Icod.DiffUtils.DiffUtil</RootNamespace>
<Version>1.0.1</Version>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<PackageVersion>1.0.1</PackageVersion>
<Version>1.0.2</Version>
<AssemblyVersion>1.0.2.0</AssemblyVersion>
</PropertyGroup>
<PropertyGroup>
<PackageVersion>1.0.2</PackageVersion>
<PackAsTool>true</PackAsTool>
<ToolCommandName>diffutil</ToolCommandName>
<PackageId>Icod.DiffUtils</PackageId>
Expand All @@ -22,10 +24,12 @@
<PackageProjectUrl>https://github.com/uniblab/Icod.DiffUtils</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/uniblab/Icod.DiffUtils</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>Initial mixed-mode diffutil tool distribution.</PackageReleaseNotes>
<PackageTags>diff;diffutils;cmp;diff3;sdiff;gnu;cli;tool</PackageTags>
<PackageTags>diff;diffutils;cmp;diff3;sdiff;gnu;cli;tool;icod;command-line;diff-utils;diffutil;file-comparison;gnu-diffutils;gnu-utils;posix;text-comparison;comparison;unified-diff</PackageTags>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<PropertyGroup Condition=" '$(PlatformTarget)' == '' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down Expand Up @@ -67,6 +71,7 @@
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
</PropertyGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="" />
<Content Include="README.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>$(AssemblyName).README.md</TargetPath>
Expand Down
Binary file added diffutil/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packaging/BuildReleaseArchive.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ try {
'-c', $Configuration,
'-r', $RuntimeIdentifier,
'--self-contained', $selfContainedValue,
"-p:PublishSelfContained=$selfContainedValue",
'-p:PublishSingleFile=true',
'-p:PublishTrimmed=false',
'-p:DebugType=None',
Expand Down
6 changes: 3 additions & 3 deletions packaging/VerifyDistribution.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ function Get-ProjectProperty {
)

foreach ($group in $Project.Project.PropertyGroup) {
$value = $group.$Name
if ($null -ne $value -and 0 -lt "$value".Length) {
return "$value"
$property = $group.SelectSingleNode($Name)
if ($null -ne $property -and 0 -lt $property.InnerText.Length) {
return $property.InnerText
}
}

Expand Down
Loading