-
Notifications
You must be signed in to change notification settings - Fork 1
Meta files for NuGet binaries #39
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
Meta files for NuGet binaries #39
Conversation
|
Thanks! This however doesn't include the .meta files yet, does it? |
|
Nah it's WIP |
|
Just did some tests with Linux and Windows, and both the meta files and the dlls seem to be interchangeable across platforms |
|
Ok it's ready I think. Now we don't ship identical binaries for three platforms. |
|
Forgot about a few meta files |
|
Cool, let's give this a try! |
|
Crap. Didn't work the dlls and yetanotherhttphandler are missing in the deployed package. |
|
Maybe because your plugins are in Plugins/Plugins? (Also YetAnotherHttpHandler is at YetAnotherHttpHandler/YetAnotherHttpHandler in the artifact.) In there it seems that all .meta and .dll files are in place, though. |
|
Instead of mkdir -p tmp/Plugins
cp -r Plugins tmp/Plugins
mkdir -p tmp/YetAnotherHttpHandler
cp -r YetAnotherHttpHandler tmp/YetAnotherHttpHandlerI'd try: mkdir -p tmp
cp -r Plugins tmp/
cp -r YetAnotherHttpHandler tmp/ |
No description provided.