You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, when I try to run the following code, I am still getting a compile error on create_async()
#include "AzureStorage/Public/was/storage_account.h"
#include "AzureStorage/Public/was/blob.h"
#include "AzureStorage/Public/cpprest/details/basic_types.h"
const utility::string_t storage_connection_string(U("some string"));
azure::storage::cloud_storage_account storage_account = azure::storage::cloud_storage_account::parse(storage_connection_string);
```
// Create the blob client.
azure::storage::cloud_blob_client blob_client = storage_account.create_cloud_blob_client();
// Retrieve a reference to a previously created container.
azure::storage::cloud_blob_container container = blob_client.get_container_reference(U("container"));
// Output URI of each item.
container.create();
`
This is the compile error I get:
`error LNK2019: unresolved external symbol "public: class Concurrency::task<void> __cdecl azure::storage::cloud_blob_container::create_async(enum azure::storage::blob_container_public_access_type,class azure::storage::blob_request_options const &,class azure::storage::operation_context)" (?create_async@cloud_blob_container@storage@azure@@QEAA?AV?$task@X@Concurrency@@W4blob_container_public_access_type@23@AEBVblob_request_options@23@Voperation_context@23@@Z) referenced in function "public: class Concurrency::task<void> __cdecl azure::storage::cloud_blob_container::create_async(void)" (?create_async@cloud_blob_container@storage@azure@@QEAA?AV?$task@X@Concurrency@@XZ)`
Am I still missing some static libs that I need to import?
The text was updated successfully, but these errors were encountered:
Hi, I am trying to compile the Azure Storage CPP library into static libs, so that I can integrate into my Unreal Project. I have been following the tutorial outlined here: https://docs.microsoft.com/en-us/sandbox/gamedev/unreal/azure-storage-unreal
Currently, I have the following static libs compiled:
However, when I try to run the following code, I am still getting a compile error on create_async()
The text was updated successfully, but these errors were encountered: