diff --git a/Directory.Build.props b/Directory.Build.props
index 7326691..95ac172 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -11,6 +11,7 @@
true
true
snupkg
+ https://github.com/spotflow-io/in-memory-azure-test-sdk
diff --git a/docs/event-hubs.nuget.md b/docs/event-hubs.nuget.md
new file mode 100644
index 0000000..a4213e0
--- /dev/null
+++ b/docs/event-hubs.nuget.md
@@ -0,0 +1,5 @@
+# In-memory Test SDKs for Azure Event Hubs
+
+This library provides in-memory SDK for Azure Event Hubs which can be used as a drop-in replacement for the official Azure.Messaging.EventHubs SDK in your tests.
+
+[See the Project Repository](https://github.com/spotflow-io/in-memory-azure-test-sdk) for more information.
diff --git a/docs/key-vault.nuget.md b/docs/key-vault.nuget.md
new file mode 100644
index 0000000..0d9faa3
--- /dev/null
+++ b/docs/key-vault.nuget.md
@@ -0,0 +1,6 @@
+# In-memory Test SDKs for Azure Key Vault
+
+This library provides in-memory SDK for Azure Key Vault which can be used as a drop-in replacement for the official
+`Azure.Security.KeyVault.*` SDKs in your tests.
+
+[See the Project Repository](https://github.com/spotflow-io/in-memory-azure-test-sdk) for more information.
diff --git a/docs/service-bus.nuget.md b/docs/service-bus.nuget.md
new file mode 100644
index 0000000..8efe26b
--- /dev/null
+++ b/docs/service-bus.nuget.md
@@ -0,0 +1,5 @@
+# In-memory Test SDKs for Azure Service Bus
+
+This library provides in-memory SDK for Azure Event Hubs which can be used as a drop-in replacement for the official Azure.Messaging.ServiceBus in your tests.
+
+[See the Project Repository](https://github.com/spotflow-io/in-memory-azure-test-sdk) for more information.
diff --git a/docs/storage.nuget.md b/docs/storage.nuget.md
new file mode 100644
index 0000000..f467f6c
--- /dev/null
+++ b/docs/storage.nuget.md
@@ -0,0 +1,6 @@
+# In-memory Test SDKs for Azure Storage
+
+This library provides in-memory SDK for Azure Storage which can be used as a drop-in replacement for the official Azure.Storage.Blobs and
+Azure.Data.Tables SDKs in your tests.
+
+[See the Project Repository](https://github.com/spotflow-io/in-memory-azure-test-sdk) for more information.
diff --git a/src/Spotflow.InMemory.Azure.EventHubs/Spotflow.InMemory.Azure.EventHubs.csproj b/src/Spotflow.InMemory.Azure.EventHubs/Spotflow.InMemory.Azure.EventHubs.csproj
index 65c7863..1964847 100644
--- a/src/Spotflow.InMemory.Azure.EventHubs/Spotflow.InMemory.Azure.EventHubs.csproj
+++ b/src/Spotflow.InMemory.Azure.EventHubs/Spotflow.InMemory.Azure.EventHubs.csproj
@@ -4,7 +4,7 @@
In-memory implementation of the Azure Event Hubs clients for convenient testing.
$(PackageTags);EventHub
true
- README.md
+ README.nuget.md
@@ -16,6 +16,7 @@
-
+
+
diff --git a/src/Spotflow.InMemory.Azure.KeyVault/Spotflow.InMemory.Azure.KeyVault.csproj b/src/Spotflow.InMemory.Azure.KeyVault/Spotflow.InMemory.Azure.KeyVault.csproj
index fae1230..73c11c2 100644
--- a/src/Spotflow.InMemory.Azure.KeyVault/Spotflow.InMemory.Azure.KeyVault.csproj
+++ b/src/Spotflow.InMemory.Azure.KeyVault/Spotflow.InMemory.Azure.KeyVault.csproj
@@ -4,7 +4,7 @@
In-memory implementation of the Azure Key Vault clients for convenient testing.
$(PackageTags);KeyVault;Secrets
true
- README.md
+ README.nuget.md
@@ -16,6 +16,7 @@
-
+
+
diff --git a/src/Spotflow.InMemory.Azure.ServiceBus.FluentAssertions/Spotflow.InMemory.Azure.ServiceBus.FluentAssertions.csproj b/src/Spotflow.InMemory.Azure.ServiceBus.FluentAssertions/Spotflow.InMemory.Azure.ServiceBus.FluentAssertions.csproj
index 23fa5e4..0ca1949 100644
--- a/src/Spotflow.InMemory.Azure.ServiceBus.FluentAssertions/Spotflow.InMemory.Azure.ServiceBus.FluentAssertions.csproj
+++ b/src/Spotflow.InMemory.Azure.ServiceBus.FluentAssertions/Spotflow.InMemory.Azure.ServiceBus.FluentAssertions.csproj
@@ -16,7 +16,7 @@
-
+
diff --git a/src/Spotflow.InMemory.Azure.ServiceBus/Spotflow.InMemory.Azure.ServiceBus.csproj b/src/Spotflow.InMemory.Azure.ServiceBus/Spotflow.InMemory.Azure.ServiceBus.csproj
index 4e74449..1b7e571 100644
--- a/src/Spotflow.InMemory.Azure.ServiceBus/Spotflow.InMemory.Azure.ServiceBus.csproj
+++ b/src/Spotflow.InMemory.Azure.ServiceBus/Spotflow.InMemory.Azure.ServiceBus.csproj
@@ -4,7 +4,7 @@
In-memory implementation of the Azure Service Bus clients for convenient testing.
$(PackageTags);ServiceBus
true
- README.md
+ README.nuget.md
@@ -14,7 +14,8 @@
-
+
+
diff --git a/src/Spotflow.InMemory.Azure.Storage.FluentAssertions/Spotflow.InMemory.Azure.Storage.FluentAssertions.csproj b/src/Spotflow.InMemory.Azure.Storage.FluentAssertions/Spotflow.InMemory.Azure.Storage.FluentAssertions.csproj
index 6c842f0..90b3d72 100644
--- a/src/Spotflow.InMemory.Azure.Storage.FluentAssertions/Spotflow.InMemory.Azure.Storage.FluentAssertions.csproj
+++ b/src/Spotflow.InMemory.Azure.Storage.FluentAssertions/Spotflow.InMemory.Azure.Storage.FluentAssertions.csproj
@@ -16,7 +16,7 @@
-
+
diff --git a/src/Spotflow.InMemory.Azure.Storage/Spotflow.InMemory.Azure.Storage.csproj b/src/Spotflow.InMemory.Azure.Storage/Spotflow.InMemory.Azure.Storage.csproj
index 1f98647..afb9d62 100644
--- a/src/Spotflow.InMemory.Azure.Storage/Spotflow.InMemory.Azure.Storage.csproj
+++ b/src/Spotflow.InMemory.Azure.Storage/Spotflow.InMemory.Azure.Storage.csproj
@@ -4,7 +4,7 @@
In-memory implementation of the Azure Storage Blobs and Tables clients for convenient testing.
$(PackageTags);Storage;Blobs;Tables
true
- README.md
+ README.nuget.md
@@ -22,7 +22,8 @@
-
+
+