Upgrading
[0.6.0]
To upgrade to the Assets package version 0.5.0, you must do the following:
Use IAssetRepository as the single entry point for API calls
- Create an instance of an
IAssetRepositoryimplementation usingAssetRepositoryFactory.Create(). - Use the
IAssetRepositoryinstance to retrieve either an 'IProject' by listing projects withIAssetRepository.ListProjectsAsyncor getting a single project withIAssetRepository.GetProjectAsync. - Use the
IProjectinstance to create, get, or delete assets and asset collections. - Use the
IAssetinstance to create, get, or delete asset files. - Use the
IAssetFileinstance to upload, download or update asset files.
[0.3.0]
- All instances where
IPagedResponse<T>have been replaced withIAsyncEnumerable<T>.- The resulting enumeration must be awaited to get all the results. See the use case for asset searches for an example.
[0.2.0] - 2023-07-07
ServiceHostConfigurationhas been deprecated and replaced withIServiceHostResolver.- Use
UnityServiceHostResolverFactory.Create()to create a defaultServiceHostResolver.
- Use