Skip to content

Commit fb8cf04

Browse files
committed
Publish NuGet package, closes #2
1 parent 50a0090 commit fb8cf04

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

ManagedInjector.Lib/ManagedInjector.Lib.csproj

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
45
<LangVersion>9</LangVersion>
56
<Nullable>enable</Nullable>
7+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
68

79
<RootNamespace>HoLLy.ManagedInjector</RootNamespace>
10+
11+
<PackageVersion>1.0.0</PackageVersion>
12+
<AssemblyVersion>1.0.0.0</AssemblyVersion>
13+
<FileVersion>1.0.0.0</FileVersion>
814

915
<PackageId>HoLLy.ManagedInjector</PackageId>
16+
<Title>ManagedInjector.Lib</Title>
1017
<Authors>HoLLy</Authors>
11-
<TargetFramework>netstandard2.0</TargetFramework>
18+
<Description>A DLL injector to inject .NET assemblies into .NET processes.</Description>
19+
<PackageProjectUrl>https://github.com/HoLLy-HaCKeR/ManagedInjector</PackageProjectUrl>
20+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
21+
<RepositoryUrl>https://github.com/HoLLy-HaCKeR/ManagedInjector.git</RepositoryUrl>
22+
<RepositoryType>git</RepositoryType>
1223
</PropertyGroup>
1324

1425
<ItemGroup>

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# ManagedInjector 💉
2+
[![NuGet version (HoLLy.ManagedInjector)](https://img.shields.io/nuget/v/HoLLy.ManagedInjector.svg?style=flat-square)](https://www.nuget.org/packages/HoLLy.ManagedInjector/)
23

34
With ManagedInjector, you can inject .NET assemblies into other .NET processes.
45
This allows you to run your own code under the context of that process, and
@@ -59,9 +60,6 @@ Thread handle: 00000354
5960
With ManagedInjector.Lib, you can integrate ManagedInjector into your own
6061
applications with an easy-to-use API.
6162

62-
A NuGet package will be uploaded soon. Subscribe to [this issue](https://github.com/HoLLy-HaCKeR/ManagedInjector/issues/2)
63-
to stay updated.
64-
6563
⚠ Note that ManagedInjector.Lib will not move your DLLs to a temporary location.
6664
Due to how managed injection works, the files will remain "in use" by the
6765
target process until it closes. If you are actively developing your injectable,

0 commit comments

Comments
 (0)