-
-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include packages for x86/x64 onigwrap.dll, and dynamic binding betwee… #55
Conversation
Hi thanks for the contribution. Please take a look to the PR review comments. |
@Andrew1Medvedev did you manage to take a look at the comments? Thanks 🙏 |
I did not find any PR review comments. Could you please send me on my e-mail: |
build/TextMateSharp.targets
Outdated
@@ -0,0 +1,3 @@ | |||
<Project> | |||
<Import Project="$(MSBuildThisFileDirectory)\CopyNativeLibraries.targets" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think is clearer to remove this file and reference directly CopyNativeLibraries.target from the TexmateSharp.csproj project (so it's explicit what we do).
Include="..\..\build\CopyNativeLibraries.targets" /> | ||
<Content Pack="True" | ||
PackagePath="build" | ||
Include="..\..\build\TextMateSharp.targets" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we referencing both CopyNativeLibraries.tsrgets and TextmateSharp.targets here?
It is enough to reference only one *.targets, but it filename must be the same as the NuGet Package Id. |
…n them #51