-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use LibZipSharp MAJOR.MINOR version in the native library name. This is to avoid issues when two or more versions of the LibZipSharp nuget are found and their native libraries have the same name but different ABI, which can result in runtime problems when a function expected by the managed code is not found in the native library. From this point on, whenever any function is added or removed in the native library, at least the MINOR version number must be bumped. More serious ABI changes will require also MAJOR version number bump. Co-authored-by: Dean Ellis <dellis1972@googlemail.com>
- Loading branch information
1 parent
d5499c2
commit 45f4c1d
Showing
12 changed files
with
284 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Xamarin.Tools.Zip | ||
{ | ||
static class Constants | ||
{ | ||
public const string ZIP_LIBNAME = "@LibraryBaseFileName@"; | ||
} | ||
} |
Oops, something went wrong.