Skip to content

Commit e4ef86e

Browse files
committed
0.3.0 Release Candidate
1 parent a1b7063 commit e4ef86e

5 files changed

Lines changed: 10 additions & 11 deletions

File tree

App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
<System.Windows.Forms.ApplicationConfigurationSection>
77
<add key="DpiAwareness" value="PerMonitorV2" />
88
</System.Windows.Forms.ApplicationConfigurationSection>
9-
</configuration>
9+
</configuration>

Forms/Form1.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,8 +352,8 @@ private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
352352
MessageBox.Show(@"The link for the Injector is invalid. Please report this problem on the ReShade Centralized github page.");
353353
return;
354354
}
355-
File.Copy(Program.dlls + @"\inject32.exe", Program.mdlls + @"\inject32.exe");
356-
File.Copy(Program.dlls + @"\inject64.exe", Program.mdlls + @"\inject64.exe");
355+
File.Copy(Program.dlls + @"\inject32.exe", Program.mdlls + @"\inject32.exe", true);
356+
File.Copy(Program.dlls + @"\inject64.exe", Program.mdlls + @"\inject64.exe", true);
357357
}
358358
File.Delete(@"reshade.exe");
359359
File.Delete(@"[0]");

ILMergeOrder.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+


ReShade Centralized.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,5 +194,11 @@
194194
<Reference Include="System.Windows.Forms" />
195195
<Reference Include="System.Xml" />
196196
</ItemGroup>
197+
<ItemGroup>
198+
<Content Include="ILMergeOrder.txt" />
199+
</ItemGroup>
200+
<ItemGroup>
201+
<Folder Include="lib\" />
202+
</ItemGroup>
197203
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
198204
</Project>

ReShade Centralized.sln

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ VisualStudioVersion = 16.0.30804.86
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReShade Centralized", "ReShade Centralized.csproj", "{0545A51F-B5A9-43C0-B333-34B0B8A27F8C}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReShade Centralized Updater", "..\ReShade Centralized Updater\ReShade Centralized Updater.csproj", "{3133C13A-7099-425F-A725-F4FB109E7F5E}"
9-
EndProject
108
Global
119
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1210
Debug|Any CPU = Debug|Any CPU
@@ -20,12 +18,6 @@ Global
2018
{0545A51F-B5A9-43C0-B333-34B0B8A27F8C}.Release|Any CPU.Build.0 = Release|Any CPU
2119
{0545A51F-B5A9-43C0-B333-34B0B8A27F8C}.UWP|Any CPU.ActiveCfg = UWP|Any CPU
2220
{0545A51F-B5A9-43C0-B333-34B0B8A27F8C}.UWP|Any CPU.Build.0 = UWP|Any CPU
23-
{3133C13A-7099-425F-A725-F4FB109E7F5E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24-
{3133C13A-7099-425F-A725-F4FB109E7F5E}.Debug|Any CPU.Build.0 = Debug|Any CPU
25-
{3133C13A-7099-425F-A725-F4FB109E7F5E}.Release|Any CPU.ActiveCfg = Release|Any CPU
26-
{3133C13A-7099-425F-A725-F4FB109E7F5E}.Release|Any CPU.Build.0 = Release|Any CPU
27-
{3133C13A-7099-425F-A725-F4FB109E7F5E}.UWP|Any CPU.ActiveCfg = Debug|Any CPU
28-
{3133C13A-7099-425F-A725-F4FB109E7F5E}.UWP|Any CPU.Build.0 = Debug|Any CPU
2921
EndGlobalSection
3022
GlobalSection(SolutionProperties) = preSolution
3123
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)