From e41d5db28320f83bbb7e23f2d8c043d75b688977 Mon Sep 17 00:00:00 2001 From: maliming Date: Tue, 27 Feb 2024 14:02:40 +0800 Subject: [PATCH] Depends on `AbpVirtualFileSystemModule`. --- docs/en/API/Static-CSharp-API-Clients.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/en/API/Static-CSharp-API-Clients.md b/docs/en/API/Static-CSharp-API-Clients.md index bcbe7d3606..5bcbc252c7 100644 --- a/docs/en/API/Static-CSharp-API-Clients.md +++ b/docs/en/API/Static-CSharp-API-Clients.md @@ -65,8 +65,9 @@ Now, it's ready to configure the application for the static client proxy generat ````csharp [DependsOn( - typeof(AbpHttpClientModule) //used to create client proxies - )] + typeof(AbpHttpClientModule), //used to create client proxies + typeof(AbpVirtualFileSystemModule) //virtual file system +)] public class MyClientAppModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) @@ -90,8 +91,9 @@ public class MyClientAppModule : AbpModule ````csharp [DependsOn( typeof(AbpHttpClientModule), //used to create client proxies + typeof(AbpVirtualFileSystemModule), //virtual file system typeof(BookStoreApplicationContractsModule) //contains the application service interfaces - )] +)] public class MyClientAppModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context)