Skip to content

Commit 27bbbff

Browse files
committed
Fix bundling of native libs
1 parent 9c043f5 commit 27bbbff

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/Notify.NET/Notify.NET.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<!-- Pack the repo-root README into the package -->
1818
<ItemGroup>
19-
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
19+
<None Include="../../README.md" Pack="true" PackagePath="\" />
2020
</ItemGroup>
2121

2222
<ItemGroup>
@@ -27,27 +27,27 @@
2727

2828
<!-- Bundle pre-compiled native libraries for Windows -->
2929
<ItemGroup>
30-
<Content Include="runtimes\win-x64\native\WinToastWrapper.dll" Condition="Exists('runtimes\win-x64\native\WinToastWrapper.dll')">
30+
<Content Include="../../runtimes/win-x64/native/WinToastWrapper.dll" Condition="Exists('../../runtimes/win-x64/native/WinToastWrapper.dll')">
3131
<PackagePath>runtimes/win-x64/native/WinToastWrapper.dll</PackagePath>
3232
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
3333
</Content>
34-
<Content Include="runtimes\win-x86\native\WinToastWrapper.dll" Condition="Exists('runtimes\win-x86\native\WinToastWrapper.dll')">
34+
<Content Include="../../runtimes/win-x86/native/WinToastWrapper.dll" Condition="Exists('../../runtimes/win-x86/native/WinToastWrapper.dll')">
3535
<PackagePath>runtimes/win-x86/native/WinToastWrapper.dll</PackagePath>
3636
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
3737
</Content>
38-
<Content Include="runtimes\win-arm64\native\WinToastWrapper.dll" Condition="Exists('runtimes\win-arm64\native\WinToastWrapper.dll')">
38+
<Content Include="../../runtimes/win-arm64/native/WinToastWrapper.dll" Condition="Exists('../../runtimes/win-arm64/native/WinToastWrapper.dll')">
3939
<PackagePath>runtimes/win-arm64/native/WinToastWrapper.dll</PackagePath>
4040
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
4141
</Content>
4242
</ItemGroup>
4343

4444
<!-- Bundle pre-compiled native dylibs for macOS -->
4545
<ItemGroup>
46-
<Content Include="runtimes/osx-x64/native/libMacNotifyWrapper.dylib" Condition="Exists('runtimes/osx-x64/native/libMacNotifyWrapper.dylib')">
46+
<Content Include="../../runtimes/osx-x64/native/libMacNotifyWrapper.dylib" Condition="Exists('../../runtimes/osx-x64/native/libMacNotifyWrapper.dylib')">
4747
<PackagePath>runtimes/osx-x64/native/libMacNotifyWrapper.dylib</PackagePath>
4848
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
4949
</Content>
50-
<Content Include="runtimes/osx-arm64/native/libMacNotifyWrapper.dylib" Condition="Exists('runtimes/osx-arm64/native/libMacNotifyWrapper.dylib')">
50+
<Content Include="../../runtimes/osx-arm64/native/libMacNotifyWrapper.dylib" Condition="Exists('../../runtimes/osx-arm64/native/libMacNotifyWrapper.dylib')">
5151
<PackagePath>runtimes/osx-arm64/native/libMacNotifyWrapper.dylib</PackagePath>
5252
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
5353
</Content>

0 commit comments

Comments
 (0)