- OutputType WinExe -> Exe (funciona em Windows, Linux e macOS) - Namespace VideoStudy.Linux -> VideoStudy.App - Remove IPdfSaver (nunca injetado, PDF salvo pelo PersistenceService) - Remove Platforms AnyCPU;x64 (desnecessário para Photino cross-platform) - Simplifica Program.cs removendo código morto Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
545 B
XML
21 lines
545 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>
|
|
<ProjectReference Include="..\VideoStudy.UI\VideoStudy.UI.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|