Initial version

This commit is contained in:
2026-06-20 10:24:36 +02:00
parent f85b83d90f
commit 7e1173bf2c
40 changed files with 5438 additions and 63 deletions
+19
View File
@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<!-- In your own app, replace this with a PackageReference to the published
DoxaApi NuGet package, e.g.:
<PackageReference Include="DoxaApi" Version="1.0.0" />
-->
<ProjectReference Include="..\..\DoxaApi\EonaCat.DoxaApi.csproj" />
</ItemGroup>
</Project>