2025-01-24 19:17:26 -03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="wwwroot\css\fontawesome\**" />
|
|
|
|
|
|
<Content Remove="wwwroot\css\fontawesome\**" />
|
|
|
|
|
|
<EmbeddedResource Remove="wwwroot\css\fontawesome\**" />
|
|
|
|
|
|
<None Remove="wwwroot\css\fontawesome\**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Blazored.Modal" Version="7.3.1" />
|
|
|
|
|
|
<PackageReference Include="Blazored.Toast" Version="4.2.1" />
|
2025-05-05 22:50:02 -03:00
|
|
|
|
<PackageReference Include="Blazored.Typeahead" Version="4.7.0" />
|
2025-01-24 19:17:26 -03:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="8.0.6" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.6" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.6" PrivateAssets="all" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-05-08 03:09:52 -03:00
|
|
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
2025-01-24 19:17:26 -03:00
|
|
|
|
<ProjectReference Include="..\Domain\Domain.csproj" />
|
2025-04-28 14:38:00 -03:00
|
|
|
|
<ProjectReference Include="..\Transversal\Transversal.csproj" />
|
2025-01-24 19:17:26 -03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|