Compare commits
No commits in common. "ccbff06090b1b17ca4348235cae395a3054eb705" and "0f946cabe89335a7730148399a81231e07e8291d" have entirely different histories.
ccbff06090
...
0f946cabe8
@ -9,9 +9,11 @@
|
|||||||
<add key="automatic" value="True" />
|
<add key="automatic" value="True" />
|
||||||
</packageRestore>
|
</packageRestore>
|
||||||
<packageSources>
|
<packageSources>
|
||||||
|
<add key="Local repository" value="%LOCAL_NUGET%" />
|
||||||
|
<add key="TomPITGit" value="https://git.tompit.com/api/packages/Tom-PIT/nuget/index.json" />
|
||||||
|
<add key="ConnectedGit" value="https://git.tompit.com/api/packages/Connected/nuget/index.json" />
|
||||||
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" />
|
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" />
|
||||||
<add key="LocalNugetServer" value="%LOCAL_NUGET_SERVER%" />
|
|
||||||
<add key="Local file repository" value="%LOCAL_NUGET%" />
|
|
||||||
</packageSources>
|
</packageSources>
|
||||||
|
|
||||||
<disabledPackageSources />
|
<disabledPackageSources />
|
||||||
</configuration>
|
</configuration>
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
using Connected.Startup;
|
|
||||||
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
|
||||||
using Connected.Services;
|
|
||||||
|
|
||||||
namespace Connected.Components.Showcase;
|
|
||||||
|
|
||||||
public class ClientStartup : IStartup
|
|
||||||
{
|
|
||||||
public static IServiceProvider Services { get; private set; } = default!;
|
|
||||||
|
|
||||||
public async Task Configure(WebAssemblyHost host)
|
|
||||||
{
|
|
||||||
Services = host.Services;
|
|
||||||
|
|
||||||
await Task.CompletedTask;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task ConfigureServices(IServiceCollection services)
|
|
||||||
{
|
|
||||||
services.AddUIComponentServices();
|
|
||||||
|
|
||||||
await Task.CompletedTask;
|
|
||||||
}
|
|
||||||
}
|
|
@ -21,7 +21,6 @@
|
|||||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.*-*" />
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.*-*" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.*-*" PrivateAssets="all" />
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.*-*" PrivateAssets="all" />
|
||||||
<PackageReference Include="Connected.Components" Version="1.0.*-*"/>
|
<PackageReference Include="Connected.Components" Version="1.0.*-*"/>
|
||||||
<PackageReference Include="Connected.Client" Version="1.0.*-*"/>
|
|
||||||
<PackageReference Include="Nerdbank.GitVersioning"
|
<PackageReference Include="Nerdbank.GitVersioning"
|
||||||
Version="3.5.119"
|
Version="3.5.119"
|
||||||
PrivateAssets="all"
|
PrivateAssets="all"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user