Skip to content

Commit 69fce5b

Browse files
committed
Fix required files not being included
Acrylic/Mica effects will not work without this file
1 parent dc0d567 commit 69fce5b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/MultiRPC/MultiRPC.UWP.csproj

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,16 @@
66
<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework>
77
<DefineConstants>$(DefineConstants);_UWP</DefineConstants>
88
</PropertyGroup>
9+
10+
<ItemGroup Condition="'$(Platform)' == 'x64'">
11+
<Content Include="$(userprofile)\.nuget\packages\avalonia.angle.windows.natives\2.1.0.2020091801\runtimes\win7-x64\native\*.*" CopyToPublishDirectory="Always" />
12+
</ItemGroup>
13+
14+
<ItemGroup Condition="'$(Platform)' == 'x86'">
15+
<Content Include="$(userprofile)\.nuget\packages\avalonia.angle.windows.natives\2.1.0.2020091801\runtimes\win7-x86\native\*.*" CopyToPublishDirectory="Always" />
16+
</ItemGroup>
17+
18+
<ItemGroup Condition="'$(Platform)' == 'arm64'">
19+
<Content Include="$(userprofile)\.nuget\packages\avalonia.angle.windows.natives\2.1.0.2020091801\runtimes\win-arm64\native\*.*" CopyToPublishDirectory="Always" />
20+
</ItemGroup>
921
</Project>

0 commit comments

Comments
 (0)