VideoStudy/VideoStudy.App/VideoStudy.App.csproj
Ricardo Carneiro 21113cfe5a fix: copia wwwroot para o diretório de saída do VideoStudy.App
Photino.Blazor busca wwwroot em bin/Debug/net8.0/wwwroot/.
Content Update garante cópia sem conflito com itens implícitos do SDK.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-15 14:38:31 -03:00

27 lines
694 B
XML

<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>VideoStudy.App</RootNamespace>
<!-- Cross-platform: Windows, Linux, macOS -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Photino.Blazor" Version="3.2.0" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VideoStudy.UI\VideoStudy.UI.csproj" />
</ItemGroup>
</Project>