Skip to content

Commit

Permalink
add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyliseismic committed Oct 20, 2023
1 parent e73d5e3 commit 21da4f0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![NuGet package](https://img.shields.io/nuget/v/InterfaceBaseInvoke.Fody.svg?logo=NuGet)](https://www.nuget.org/packages/InterfaceBaseInvoke.Fody)
[![.net](https://img.shields.io/badge/.net%20standard-2.1-ff69b4.svg?)](https://www.microsoft.com/net/download)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/huoshan12345/InterfaceBaseInvoke.Fody/blob/master/LICENSE)
![Icon](https://github.com/huoshan12345/InterfaceBaseInvoke.Fody/raw/master/icon.png)
![Icon](https://raw.githubusercontent.com/huoshan12345/InterfaceBaseInvoke.Fody/master/icon.png)

This is an add-in for [Fody](https://github.com/Fody/Fody) which contains a workaround for `Interface Default Implementation Base Invocation`.
The feature has not been implemented by C# team yet.
Expand Down
2 changes: 1 addition & 1 deletion build/pkg.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.2
0.1.3
9 changes: 7 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,21 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>

<PropertyGroup>
<Authors>huoshan12345</Authors>
<Description>A workaround for interface's default method invocation before official support of C# team</Description>
<Copyright>Copyright © huoshan12345 2018-$([System.DateTime]::Now.ToString('yyyy'))</Copyright>
<PackageTags>IL;MSIL;Fody;ILWeaving;Cecil</PackageTags>
<PackageProjectUrl>https://github.com/huoshan12345/InterfaceBaseInvoke.Fody</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://github.com/huoshan12345/InterfaceBaseInvoke.Fody/raw/master/icon.png</PackageIconUrl>
<PackageIconUrl>https://raw.githubusercontent.com/huoshan12345/InterfaceBaseInvoke.Fody/master/icon.png</PackageIconUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" Visible="false"/>
</ItemGroup>

</Project>
5 changes: 4 additions & 1 deletion src/InterfaceBaseInvoke.Fody/InterfaceBaseInvoke.Fody.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MoreFodyHelpers" Version="0.0.5" />
<PackageReference Include="MoreFodyHelpers" Version="0.0.5" GeneratePathProperty="true" />
<None Include="$(PkgMoreFodyHelpers)\lib\$(TargetFramework)\MoreFodyHelpers.dll" Visible="false">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
5 changes: 0 additions & 5 deletions src/InterfaceBaseInvoke/InterfaceBaseInvoke.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>key.snk</AssemblyOriginatorKeyFile>
<Authors>huoshan12345</Authors>
<IsPackable>true</IsPackable>
<DebugType>embedded</DebugType>
<PackageId>InterfaceBaseInvoke.Fody</PackageId>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Copyright>Copyright $([System.DateTime]::UtcNow.ToString(yyyy)).</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Fody" Version="6.8.0" PrivateAssets="none" />
Expand Down

0 comments on commit 21da4f0

Please sign in to comment.