Skip to content

Commit 8c8b028

Browse files
committed
修复定义
1 parent 6a461f9 commit 8c8b028

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<Project>
2-
<Target Name="CopyWpfAssetsFile" AfterTargets="AfterBuild">
3-
<Copy SourceFiles="$(MSBuildThisFileDirectory)..\Assets\**\*" DestinationFolder="$(OutputPath)\" SkipUnchangedFiles="True"></Copy>
2+
<Target Name="CopyWpfAssetsFile" AfterTargets="Publish">
3+
<ItemGroup>
4+
<_CustomWPFCopyItem Include="$(MSBuildThisFileDirectory)..\Assets\**\*"></_CustomWPFCopyItem>
5+
</ItemGroup>
6+
<Copy SourceFiles="@(_CustomWPFCopyItem)" DestinationFolder="$(OutputPath)\publish" SkipUnchangedFiles="True"></Copy>
47
</Target>
58
</Project>

package/Library/Lindexi.Src.CustomWPF/Lindexi.Src.CustomWPF.csproj

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

33
<PropertyGroup>
44
<TargetFramework>net5.0</TargetFramework>
5+
<Version>1.0.3</Version>
56
</PropertyGroup>
67

78
<ItemGroup>

0 commit comments

Comments
 (0)