diff --git a/release-please-config.json b/release-please-config.json
index 5a0201f6..242fbaba 100644
--- a/release-please-config.json
+++ b/release-please-config.json
@@ -8,7 +8,8 @@
"versioning": "default",
"extra-files": [
"build/Common.prod.props",
- "README.md"
+ "README.md",
+ "src/OpenFeature.DependencyInjection/README.md"
]
}
},
diff --git a/src/OpenFeature.DependencyInjection/OpenFeature.DependencyInjection.csproj b/src/OpenFeature.DependencyInjection/OpenFeature.DependencyInjection.csproj
index 855ab2ab..92347371 100644
--- a/src/OpenFeature.DependencyInjection/OpenFeature.DependencyInjection.csproj
+++ b/src/OpenFeature.DependencyInjection/OpenFeature.DependencyInjection.csproj
@@ -17,6 +17,7 @@
+
diff --git a/src/OpenFeature.DependencyInjection/README.md b/src/OpenFeature.DependencyInjection/README.md
new file mode 100644
index 00000000..6b9fcfe7
--- /dev/null
+++ b/src/OpenFeature.DependencyInjection/README.md
@@ -0,0 +1,48 @@
+# OpenFeature.DependencyInjection
+
+> **⚠️ DEPRECATED**: This library is now deprecated. The OpenTelemetry Dependency Injection library has been moved to the OpenFeature Hosting integration in version 2.9.0.
+
+OpenFeature is an open standard for feature flag management, created to support a robust feature flag ecosystem using cloud native technologies. OpenFeature will provide a unified API and SDK, and a developer-first, cloud-native implementation, with extensibility for open source and commercial offerings.
+
+## Migration Guide
+
+If you are using `OpenFeature.DependencyInjection`, you should migrate to the `OpenFeature.Hosting` package. The hosting package provides the same functionality but in one package.
+
+### 1. Update dependencies
+
+Remove this package:
+
+```xml
+
+```
+
+Update or install the latest `OpenFeature.Hosting` package:
+
+```xml
+
+```
+
+### 2. Update your `Program.cs`
+
+Remove the `AddHostedFeatureLifecycle` method call.
+
+#### Before
+
+```csharp
+builder.Services.AddOpenFeature(featureBuilder =>
+{
+ featureBuilder
+ .AddHostedFeatureLifecycle();
+
+ // Omit for code brevity
+});
+```
+
+#### After
+
+```csharp
+builder.Services.AddOpenFeature(featureBuilder =>
+{
+ // Omit for code brevity
+});
+```