20 lines
607 B
XML
20 lines
607 B
XML
<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>
|