Follow master updates and general improvements (#194)

* Use correct framework

* Upgrade packages

* Remove unused variable

* Migrate away from deprecated package

* Improve naming

* Fix typo

* Simplify constructors
This commit is contained in:
Michiel Hazelhof
2024-03-31 12:13:05 +02:00
committed by GitHub
parent c8192610dc
commit 0a45513872
4 changed files with 34 additions and 35 deletions

View File

@@ -12,7 +12,7 @@ namespace bitBetter;
internal class Program
{
private static Int32 Main(String[] args)
private static Int32 Main()
{
const String certFile = "/app/cert.cert";
String[] files = Directory.GetFiles("/app/mount", "Core.dll", SearchOption.AllDirectories);

View File

@@ -2,11 +2,11 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp8.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="dnlib" Version="3.6.0" />
<PackageReference Include="dnlib" Version="4.4.0" />
</ItemGroup>
</Project>