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>
27 lines
694 B
XML
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>
|