Skip to content

Commit

Permalink
Update ILRepack version 2.0.38
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Feb 18, 2025
1 parent 7c3ba88 commit f456bcc
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.0.1] / 2025-02-03
### Features
- Update `ILRepack` version `2.0.38`.
### Experimental Features
- `ILRepackRenameEnabled` property to rename the output file to change the assembly name with revision.
### Updates
- Update `ILRepackVersion` with condition.
### Sample
- Ignore `System.Text.Encodings.Web` issue in repack.

## [1.0.0] / 2024-09-03 - 2025-01-30
### Features
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.0.1-alpha.1</Version>
<Version>1.0.1-beta</Version>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Build](https://github.com/ricaun-io/ricaun.ILRepack/actions/workflows/Build.yml/badge.svg)](https://github.com/ricaun-io/ricaun.ILRepack/actions)
[![Release](https://img.shields.io/nuget/v/ricaun.ILRepack?logo=nuget&label=release&color=blue)](https://www.nuget.org/packages/ricaun.ILRepack)

`ricaun.ILRepack` is a basic repack for .NET assemblies. Uses the package [ILRepack](https://github.com/gluck/il-repack) version `2.0.36` to repack the assembly using `Target` to replace the original assembly to the repack assembly with all the dependencies included.
`ricaun.ILRepack` is a basic repack for .NET assemblies. Uses the package [ILRepack](https://github.com/gluck/il-repack) version `2.0.38` to repack the assembly using `Target` to replace the original assembly to the repack assembly with all the dependencies included.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion ricaun.ILRepack.Sample/ricaun.ILRepack.Sample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</ItemGroup>

<ItemGroup>
<ILRepackIgnoreReferences Include="Newtonsoft.Json" />
<ILRepackIgnoreReferences Include="Newtonsoft.Json;System.Text.Encodings.Web" />
</ItemGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion ricaun.ILRepack/ricaun.ILRepack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="ILRepack" Version="2.0.36" />
<PackageReference Include="ILRepack" Version="2.0.38" />
</ItemGroup>

<Target Name="CopyPackFiles" AfterTargets="Pack" Condition="!$(Configuration.Contains('Debug'))">
Expand Down
2 changes: 1 addition & 1 deletion ricaun.ILRepack/ricaun.ILRepack.targets
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<ILRepackVersion Condition="'$(ILRepackVersion)' == ''">2.0.36</ILRepackVersion>
<ILRepackVersion Condition="'$(ILRepackVersion)' == ''">2.0.38</ILRepackVersion>
<ILRepack Condition="'$(ILRepack)' == ''">$(NuGetPackageRoot)ilrepack\$(ILRepackVersion)\tools\ILRepack.exe</ILRepack>
</PropertyGroup>

Expand Down

0 comments on commit f456bcc

Please sign in to comment.