remove tenant from appExtension as its now a default header
bb596eaf
Michael Schmitz
committed
succeeded
2 changed files
IAppExtensions.cs
/WPE.App.Base/IAppExtensions.cs-2+1
/WPE.App.Base/IAppExtensions.cs
Add comment 15 /// </summary>
Add comment 16 /// <param name="services">ServiceCollection to add to</param>
Add comment 17 /// <param name="appEnvironment">Environment app is running for</param>
Add comment 18 Minus   /// <param name="tenant">Tenant to register for</param>
Add comment 19 18 /// <returns>ServiceCollection to allow call chaining</returns>
Add comment 20 Minus   public abstract static IServiceCollection RegisterServices(IServiceCollection services, AppEnvironment appEnvironment, string tenant);
Add comment 19 Plus   public abstract static IServiceCollection RegisterServices(IServiceCollection services, AppEnvironment appEnvironment);
Add comment 21 20
Add comment 22 21 /// <summary>
Add comment 23 22 /// Defines all available PoI buttons
WPE.App.Base.csproj
/WPE.App.Base/WPE.App.Base.csproj-2+2
/WPE.App.Base/WPE.App.Base.csproj
Add comment 15 <PackageIcon>icon.png</PackageIcon>
Add comment 16 <PackageReadmeFile>ReadMe.md</PackageReadmeFile>
Add comment 17 <PackageTags>WPE;Workplace Experience;Blazor;MAUI;infsoft</PackageTags>
Add comment 18 Minus   <Version>1.0.0-next15</Version>
Add comment 18 Plus   <Version>1.0.0-next16</Version>
Add comment 19 <GenerateDocumentationFile>true</GenerateDocumentationFile>
Add comment 20 </PropertyGroup>
Add comment 21
Add comment 22 <ItemGroup>
Add comment 23 <PackageReference Include="Autofac" Version="8.0.0" />
Add comment 24 Minus   <PackageReference Include="Infsoft.WPE.App.Services" Version="0.1.0-next22" />
Add comment 24 Plus   <PackageReference Include="Infsoft.WPE.App.Services" Version="0.1.0-next23" />
Add comment 25 <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.6" />
Add comment 26 </ItemGroup>
Add comment 27