2025-11-18 20:38:35 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-11-19 12:33:37 +01:00
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
2025-11-18 20:38:35 +01:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<SupportedPlatform Include="browser"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-11-19 12:33:37 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.0"/>
|
|
|
|
|
<PackageReference Include="MudBlazor" Version="8.0.0"/>
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="10.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.0" />
|
2025-11-18 20:38:35 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\DiunaBI.Application\DiunaBI.Application.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Interfaces\" />
|
|
|
|
|
<Folder Include="wwwroot\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|