Fixed naming

This commit is contained in:
Thorsten Sommer 2024-01-24 19:22:13 +01:00
parent 34d024fd59
commit 7b3ac75543
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
5 changed files with 45 additions and 16 deletions

View File

@ -1,8 +1,8 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Run Photino Net" type="DotNetProject" factoryName=".NET Project">
<option name="EXE_PATH" value="$PROJECT_DIR$/PhotinoNetAbpp/bin/Debug/net8.0/PhotinoNetAbpp" />
<option name="EXE_PATH" value="$PROJECT_DIR$/PhotinoNetApp/bin/Debug/net8.0/PhotinoNetAbpp" />
<option name="PROGRAM_PARAMETERS" value="" />
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$/PhotinoNetAbpp" />
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$/PhotinoNetApp" />
<option name="PASS_PARENT_ENVS" value="1" />
<option name="USE_EXTERNAL_CONSOLE" value="0" />
<option name="USE_MONO" value="0" />

View File

@ -7,7 +7,7 @@
<base href="/"/>
<link rel="stylesheet" href="bootstrap/bootstrap.min.css"/>
<link rel="stylesheet" href="app.css"/>
<link rel="stylesheet" href="PhotinoNetAbpp.styles.css"/>
<link rel="stylesheet" href="PhotinoNetApp.styles.css"/>
<link rel="icon" type="image/png" href="favicon.png"/>
<HeadOutlet/>
</head>

View File

@ -6,5 +6,5 @@
@using static Microsoft.AspNetCore.Components.Web.RenderMode
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.JSInterop
@using PhotinoNetAbpp
@using PhotinoNetAbpp.Components
@using PhotinoNetApp
@using PhotinoNetApp.Components

View File

@ -2,17 +2,33 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>WinExe</OutputType>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>PhotinoNetAbpp</RootNamespace>
<RootNamespace>PhotinoNetApp</RootNamespace>
<AssemblyName>PhotinoNetApp</AssemblyName>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>osx-arm64</RuntimeIdentifier>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>
<ItemGroup>
<None Remove="Properties\launchSettings.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.1" />
<PackageReference Include="Photino.NET" Version="2.6.0" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<!-- <EmbeddedResource Include="EmbeddedFilesManifest.xml" />-->
<EmbeddedResource Include="wwwroot\**\*" />
</ItemGroup>
</Project>

View File

@ -1,24 +1,37 @@
using System.Drawing;
using System.Reflection;
using Microsoft.Extensions.FileProviders;
using PhotinoNET;
using PhotinoNetAbpp.Components;
using PhotinoNetApp.Components;
var builder = WebApplication.CreateBuilder(args);
var builder = WebApplication.CreateBuilder();
// Add services to the container.
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents();
builder.Services.AddSingleton<IFileProvider>(new ManifestEmbeddedFileProvider(Assembly.GetAssembly(type: typeof(Program))!, "/", "Microsoft.Extensions.FileProviders.Embedded.Manifest.xml", DateTimeOffset.Now));
builder.WebHost.UseWebRoot("wwwroot").UseStaticWebAssets();
// builder.WebHost.UseWebRoot("wwwroot");
builder.WebHost.UseStaticWebAssets();
builder.WebHost.UseUrls("http://localhost:5000");
var app = builder.Build();
app.UseHttpsRedirection();
app.UseStaticFiles();
// app.UseStaticFiles();
app.UseStaticFiles(new StaticFileOptions
{
FileProvider = app.Services.GetService<IFileProvider>(),
// RequestPath = "/PhotinoNetApp",
ServeUnknownFileTypes = true,
});
app.UseAntiforgery();
app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode();
foreach (var file in Assembly.GetExecutingAssembly().GetManifestResourceNames())
if (file.Contains("wwwroot"))
app.Logger.LogWarning($"Public file: {file}");
using var webServerCancellation = new CancellationTokenSource();
var webServerTask = app.RunAsync(webServerCancellation.Token);