Skip to content

Commit 0ae4bb7

Browse files
committed
fix: copying file name
1 parent be1c597 commit 0ae4bb7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<PropertyGroup>
3-
<UnlockerPatchDllName>UnlockerPatch.dll</UnlockerPatchDllName>
3+
<UnlockerStubDllName>UnlockerStub.dll</UnlockerStubDllName>
44
</PropertyGroup>
55

6-
<Target Name="CopyUnlockerPatchDll" BeforeTargets="AfterCompile">
6+
<Target Name="CopyUnlockerStubDll" BeforeTargets="AfterCompile">
77
<ItemGroup>
8-
<UnlockerPatchDll Include="$(MSBuildThisFileDirectory)..\lib\net8.0-windows7.0\x64\UnlockerPatch.dll" Condition="'$(PlatformTarget)' == 'x64'" />
8+
<UnlockerStubDll Include="$(MSBuildThisFileDirectory)..\lib\net8.0-windows7.0\x64\UnlockerStub.dll" Condition="'$(PlatformTarget)' == 'x64'" />
99
</ItemGroup>
1010

11-
<Copy SourceFiles="@(UnlockerPatchDll)" DestinationFolder="$(OutputPath)" SkipUnchangedFiles="True" />
11+
<Copy SourceFiles="@(UnlockerStubDll)" DestinationFolder="$(OutputPath)" SkipUnchangedFiles="True" />
1212
</Target>
1313
</Project>
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<PropertyGroup>
3-
<UnlockerPatchDllName>UnlockerPatch.dll</UnlockerPatchDllName>
3+
<UnlockerStubDllName>UnlockerStub.dll</UnlockerStubDllName>
44
</PropertyGroup>
55

6-
<Target Name="CopyUnlockerPatchDll" BeforeTargets="AfterCompile">
6+
<Target Name="CopyUnlockerStubDll" BeforeTargets="AfterCompile">
77
<ItemGroup>
8-
<UnlockerPatchDll Include="$(MSBuildThisFileDirectory)..\lib\net8.0-windows7.0\x64\UnlockerPatch.dll" Condition="'$(PlatformTarget)' == 'x64'" />
8+
<UnlockerStubDll Include="$(MSBuildThisFileDirectory)..\lib\net8.0-windows7.0\x64\UnlockerStub.dll" Condition="'$(PlatformTarget)' == 'x64'" />
99
</ItemGroup>
1010

11-
<Copy SourceFiles="@(UnlockerPatchDll)" DestinationFolder="$(OutputPath)" SkipUnchangedFiles="True" />
11+
<Copy SourceFiles="@(UnlockerStubDll)" DestinationFolder="$(OutputPath)" SkipUnchangedFiles="True" />
1212
</Target>
1313
</Project>

0 commit comments

Comments
 (0)