This commit is contained in:
Julian 2023-02-06 12:09:10 -05:00
parent aba63c43bc
commit 90983c5f76
Signed by: NotNite
GPG Key ID: BD91A5402CCEB08A
2 changed files with 8 additions and 8 deletions

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net4.7.2</TargetFramework>
<Version>1.0.3</Version>
<Version>1.0.4</Version>
</PropertyGroup>
<ItemGroup>
<Reference Include="PresentationFramework" />

View File

@ -103,8 +103,8 @@ namespace DeezShade {
File.Move(Path.Combine(gameInstall, "dxgi.dll"), Path.Combine(gameInstall, "dxgi.dll.old"));
}
zip.GetEntry("GShade64.dll").ExtractToFile(gameInstall + "dxgi.dll", true);
zip.GetEntry("GShade.ini").ExtractToFile(gameInstall + "GShade.ini", true);
zip.GetEntry("GShade64.dll").ExtractToFile(Path.Combine(gameInstall, "dxgi.dll"), true);
zip.GetEntry("GShade.ini").ExtractToFile(Path.Combine(gameInstall, "GShade.ini"), true);
Console.WriteLine("Done!\nSupport FOSS, and thank you for using DeezShade!\nPress any key to continue.");
Console.ReadKey();