-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPicea.Abies.Server.Kestrel.csproj
More file actions
51 lines (45 loc) · 2.48 KB
/
Picea.Abies.Server.Kestrel.csproj
File metadata and controls
51 lines (45 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Embed wwwroot files as manifest-based resources inside the DLL.
This ensures abies-server.js is always available regardless of how
the consumer references the package (project ref or NuGet).
UseAbiesStaticFiles() serves from these embedded resources with a
physical-file fallback for development hot-reload scenarios. -->
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
</PropertyGroup>
<ItemGroup>
<!-- Embed wwwroot into the assembly for ManifestEmbeddedFileProvider -->
<EmbeddedResource Include="wwwroot\**" />
<!-- Copy to output for project-reference consumers (development).
Pack="false" prevents NuGet contentFiles conflict with template-bundled copies. -->
<Content Include="wwwroot\**" CopyToOutputDirectory="PreserveNewest" Pack="false" />
</ItemGroup>
<!-- NuGet package metadata -->
<PropertyGroup>
<PackageId>Picea.Abies.Server.Kestrel</PackageId>
<Title>Picea.Abies.Server.Kestrel</Title>
<Description>Kestrel hosting adapter for the Picea Abies MVU framework. Provides MapAbies endpoint routing for serving server-rendered pages and WebSocket-based interactive sessions.</Description>
<Authors>Maurice Peters</Authors>
<PackageTags>picea;abies;ssr;server;kestrel;websocket;mvu;elm;functional</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/picea/abies</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/picea/abies</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<!-- Required for GenerateEmbeddedFilesManifest MSBuild targets.
PrivateAssets="all" keeps this as a build-time-only dependency;
the types are already available via the FrameworkReference. -->
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="10.0.5" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Picea.Abies.Server\Picea.Abies.Server.csproj" />
<ProjectReference Include="..\Picea.Abies\Picea.Abies.csproj" />
<InternalsVisibleTo Include="Picea.Abies.Server.Kestrel.Tests" />
</ItemGroup>
</Project>