- 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>
30 lines
1003 B
HTML
30 lines
1003 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>VideoStudy - Linux</title>
|
|
<base href="/" />
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="_content/VideoStudy.UI/app.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
<div style="position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;">
|
|
<div class="spinner-border text-primary" role="status"></div>
|
|
<div style="margin-top:10px;">Starting VideoStudy...</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="blazor-error-ui">
|
|
An unhandled error has occurred.
|
|
<a href="" class="reload">Reload</a>
|
|
<a class="dismiss">🗙</a>
|
|
</div>
|
|
|
|
<script src="_framework/blazor.modules.js" type="module"></script>
|
|
<script src="_framework/blazor.photino.js"></script>
|
|
</body>
|
|
</html>
|