-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Declare .NET native dependencies per-plaftorm in `runtime.json`. Helps consumer apps only download and use the relevant native package for the desired OS/arch. Apps which need the native dependencies in their build output dir should consider https://learn.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#enabledynamicloading or, alternatively, rely on `dotnet publish -r <RID>`.
- Loading branch information
Showing
3 changed files
with
35 additions
and
7 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
29 changes: 29 additions & 0 deletions
29
Bindings/dotnet/RoyalApps.RoyalVNCKit/nuget/runtime.template.json
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,29 @@ | ||
{ | ||
"runtimes": { | ||
"linux-arm64": { | ||
"RoyalApps.RoyalVNCKit": { | ||
"RoyalApps.RoyalVNCKit.native.linux-arm64": "v" | ||
} | ||
}, | ||
"linux-x64": { | ||
"RoyalApps.RoyalVNCKit": { | ||
"RoyalApps.RoyalVNCKit.native.linux-x64": "v" | ||
} | ||
}, | ||
"osx": { | ||
"RoyalApps.RoyalVNCKit": { | ||
"RoyalApps.RoyalVNCKit.native.osx": "v" | ||
} | ||
}, | ||
"win-arm64": { | ||
"RoyalApps.RoyalVNCKit": { | ||
"RoyalApps.RoyalVNCKit.native.win-arm64": "v" | ||
} | ||
}, | ||
"win-x64": { | ||
"RoyalApps.RoyalVNCKit": { | ||
"RoyalApps.RoyalVNCKit.native.win-x64": "v" | ||
} | ||
} | ||
} | ||
} |
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