Browse Source

Added studio links

pull/148/head
Yunus Emre Kalkan 9 months ago
parent
commit
5ab0e1de39
  1. 2
      etc/abp-studio/run-profiles/Default.abprun.json
  2. 4
      src/EventHub.Admin.HttpApi.Host/EventHub.Admin.HttpApi.Host.csproj
  3. 3
      src/EventHub.Admin.HttpApi.Host/EventHubAdminHttpApiHostModule.cs
  4. 4
      src/EventHub.HttpApi.Host/EventHub.HttpApi.Host.csproj
  5. 3
      src/EventHub.HttpApi.Host/EventHubHttpApiHostModule.cs
  6. 4
      src/EventHub.IdentityServer/EventHub.IdentityServer.csproj
  7. 3
      src/EventHub.IdentityServer/EventHubIdentityServerModule.cs
  8. 4
      src/EventHub.Web/EventHub.Web.csproj
  9. 3
      src/EventHub.Web/EventHubWebModule.cs

2
etc/abp-studio/run-profiles/Default.abprun.json

@ -56,6 +56,6 @@
"../../docker/infrastructure/redis.yml": {},
"../../docker/infrastructure/postgres.yml": {}
},
"serviceName": "EventHub"
"serviceName": "eventhub"
}
}

4
src/EventHub.Admin.HttpApi.Host/EventHub.Admin.HttpApi.Host.csproj

@ -22,6 +22,10 @@
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic" Version="9.3.3" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Volo.Abp.Studio.Client.AspNetCore" Version="1.2.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EventHub.Admin.Application\EventHub.Admin.Application.csproj" />
<ProjectReference Include="..\EventHub.Admin.HttpApi\EventHub.Admin.HttpApi.csproj" />

3
src/EventHub.Admin.HttpApi.Host/EventHubAdminHttpApiHostModule.cs

@ -31,6 +31,7 @@ using Volo.Abp.Caching.StackExchangeRedis;
using Volo.Abp.Localization;
using Volo.Abp.Modularity;
using Volo.Abp.Security.Claims;
using Volo.Abp.Studio.Client.AspNetCore;
using Volo.Abp.Swashbuckle;
using Volo.Abp.Timing;
using Volo.Abp.VirtualFileSystem;
@ -46,6 +47,7 @@ namespace EventHub.Admin
typeof(AbpAspNetCoreSerilogModule),
typeof(AbpSwashbuckleModule),
typeof(AbpAspNetCoreMvcUiBasicThemeModule),
typeof(AbpStudioClientAspNetCoreModule),
typeof(EventHubWebSharedModule)
)]
public class EventHubAdminHttpApiHostModule : AbpModule
@ -233,6 +235,7 @@ namespace EventHub.Admin
app.UseErrorPage();
}
app.UseAbpStudioLink();
app.UseCookiePolicy();
app.UseCorrelationId();
app.MapAbpStaticAssets();

4
src/EventHub.HttpApi.Host/EventHub.HttpApi.Host.csproj

@ -22,6 +22,10 @@
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic" Version="9.3.3" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Volo.Abp.Studio.Client.AspNetCore" Version="1.2.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EventHub.Application\EventHub.Application.csproj" />
<ProjectReference Include="..\EventHub.HttpApi\EventHub.HttpApi.csproj" />

3
src/EventHub.HttpApi.Host/EventHubHttpApiHostModule.cs

@ -32,6 +32,7 @@ using Volo.Abp.Caching;
using Volo.Abp.Caching.StackExchangeRedis;
using Volo.Abp.Localization;
using Volo.Abp.Modularity;
using Volo.Abp.Studio.Client.AspNetCore;
using Volo.Abp.Swashbuckle;
using Volo.Abp.Timing;
using Volo.Abp.VirtualFileSystem;
@ -47,6 +48,7 @@ namespace EventHub
typeof(AbpAspNetCoreSerilogModule),
typeof(AbpSwashbuckleModule),
typeof(AbpAspNetCoreMvcUiBasicThemeModule),
typeof(AbpStudioClientAspNetCoreModule),
typeof(EventHubWebSharedModule)
)]
public class EventHubHttpApiHostModule : AbpModule
@ -250,6 +252,7 @@ namespace EventHub
app.UseErrorPage();
}
app.UseAbpStudioLink();
app.UseCookiePolicy();
app.UseCorrelationId();
app.MapAbpStaticAssets();

4
src/EventHub.IdentityServer/EventHub.IdentityServer.csproj

@ -50,6 +50,10 @@
<PackageReference Include="Volo.Abp.Account.Application" Version="9.3.3" />
<PackageReference Include="Volo.Abp.Account.HttpApi" Version="9.3.3" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Volo.Abp.Studio.Client.AspNetCore" Version="1.2.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EventHub.EntityFrameworkCore\EventHub.EntityFrameworkCore.csproj" />

3
src/EventHub.IdentityServer/EventHubIdentityServerModule.cs

@ -33,6 +33,7 @@ using Volo.Abp.Caching.StackExchangeRedis;
using Volo.Abp.IdentityServer;
using Volo.Abp.Localization;
using Volo.Abp.Modularity;
using Volo.Abp.Studio.Client.AspNetCore;
using Volo.Abp.UI.Navigation.Urls;
using Volo.Abp.VirtualFileSystem;
@ -47,6 +48,7 @@ namespace EventHub
typeof(EventHubWebThemeModule),
typeof(EventHubEntityFrameworkCoreModule),
typeof(AbpAspNetCoreSerilogModule),
typeof(AbpStudioClientAspNetCoreModule),
typeof(EventHubWebSharedModule)
)]
public class EventHubIdentityServerModule : AbpModule
@ -214,6 +216,7 @@ namespace EventHub
app.UseErrorPage();
}
app.UseAbpStudioLink();
app.UseCookiePolicy();
app.UseCorrelationId();
app.MapAbpStaticAssets();

4
src/EventHub.Web/EventHub.Web.csproj

@ -39,6 +39,10 @@
<PackageReference Include="Volo.CmsKit.Public.Web" Version="9.3.3" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Volo.Abp.Studio.Client.AspNetCore" Version="1.2.2" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Logs\**" />
<Content Remove="Logs\**" />

3
src/EventHub.Web/EventHubWebModule.cs

@ -33,6 +33,7 @@ using Volo.Abp.Caching.StackExchangeRedis;
using Volo.Abp.Http.Client;
using Volo.Abp.Http.Client.IdentityModel.Web;
using Volo.Abp.Modularity;
using Volo.Abp.Studio.Client.AspNetCore;
using Volo.Abp.Swashbuckle;
using Volo.Abp.UI.Navigation;
using Volo.Abp.UI.Navigation.Urls;
@ -55,6 +56,7 @@ namespace EventHub.Web
typeof(AbpSwashbuckleModule),
typeof(AbpAccountApplicationContractsModule),
typeof(CmsKitPublicWebModule),
typeof(AbpStudioClientAspNetCoreModule),
typeof(PaymentWebModule)
)]
public class EventHubWebModule : AbpModule
@ -257,6 +259,7 @@ namespace EventHub.Web
app.UseErrorPage();
}
app.UseAbpStudioLink();
app.UseCookiePolicy();
app.UseCorrelationId();
app.MapAbpStaticAssets();

Loading…
Cancel
Save