VideoStudy/VideoStudy.App/VideoStudy.App.csproj
Ricardo Carneiro b765543e1c refactor: renomeia VideoStudy.Linux -> VideoStudy.App (cross-platform)
- 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>
2026-05-15 14:32:40 -03:00

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>