Skip to content

Commit

Permalink
Update publish
Browse files Browse the repository at this point in the history
  • Loading branch information
feast107 committed Jun 2, 2023
1 parent cabb144 commit 0dbec1c
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Antelcat.ILGeneratorEx

Extensions of ILGenerator and easily create delegates
Extensions of ILGenerator and the ability to create delegates more easily

## Emit Extension

Expand Down
Binary file added docs/Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 14 additions & 4 deletions src/Antelcat.ILGeneratorEx.sln
Original file line number Diff line number Diff line change
@@ -1,21 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.6.33723.286
MinimumVisualStudioVersion = 10.0.40219.1
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Antelcat.Shared.IL", "..\extern\Antelcat.Shared\src\Shared\IL\Antelcat.Shared.IL.shproj", "{3AB3FD3D-C47D-4B09-87D7-299ABCE37BD2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Antelcat.ILGeneratorEx", "Antelcat.ILGeneratorEx\Antelcat.ILGeneratorEx.csproj", "{8C55FE54-DBEC-4975-AA18-EC1953A8CC61}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Antelcat.ILGeneratorEx", "Antelcat.ILGeneratorEx\Antelcat.ILGeneratorEx.csproj", "{8C55FE54-DBEC-4975-AA18-EC1953A8CC61}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Antelcat.ILGeneratorEx.Test", "Antelcat.ILGeneratorEx.Test\Antelcat.ILGeneratorEx.Test.csproj", "{F2240D5A-5D97-4900-A433-90D090B73935}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Antelcat.ILGeneratorEx.Test", "Antelcat.ILGeneratorEx.Test\Antelcat.ILGeneratorEx.Test.csproj", "{F2240D5A-5D97-4900-A433-90D090B73935}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{8C55FE54-DBEC-4975-AA18-EC1953A8CC61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8C55FE54-DBEC-4975-AA18-EC1953A8CC61}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3AB3FD3D-C47D-4B09-87D7-299ABCE37BD2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3AB3FD3D-C47D-4B09-87D7-299ABCE37BD2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8C55FE54-DBEC-4975-AA18-EC1953A8CC61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8C55FE54-DBEC-4975-AA18-EC1953A8CC61}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F2240D5A-5D97-4900-A433-90D090B73935}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F2240D5A-5D97-4900-A433-90D090B73935}.Debug|Any CPU.Build.0 = Debug|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(SharedMSBuildProjectFiles) = preSolution
..\extern\Antelcat.Shared\src\Shared\IL\Antelcat.Shared.IL.projitems*{3ab3fd3d-c47d-4b09-87d7-299abce37bd2}*SharedItemsImports = 13
..\extern\Antelcat.Shared\src\Shared\IL\Antelcat.Shared.IL.projitems*{8c55fe54-dbec-4975-aa18-ec1953a8cc61}*SharedItemsImports = 5
EndGlobalSection
EndGlobal
26 changes: 26 additions & 0 deletions src/Antelcat.ILGeneratorEx/Antelcat.ILGeneratorEx.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,34 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Antelcat.ILGeneratorEx</Title>
<Version>2.1.0</Version>
<Authors>Antelcat</Authors>
<Description>Extensions of ILGenerator and the ability to create delegates more easily</Description>
<PackageProjectUrl>https://github.com/Antelcat/ILGeneratorEx</PackageProjectUrl>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Antelcat/ILGeneratorEx.git</RepositoryUrl>
<PackageReleaseNotes>Initial release</PackageReleaseNotes>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\docs\Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<Content Update="..\..\extern\Antelcat.Shared\src\Shared\IL\Extensions\ILExtension.g.tt">
<Generator>TextTemplatingFileGenerator</Generator>
Expand Down

0 comments on commit 0dbec1c

Please sign in to comment.