2026-02-18 10:43:27 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
2026-02-25 17:39:17 -05:00
|
|
|
<!-- Ensure the Bitwarden SDK native runtime libraries are included on publish -->
|
|
|
|
|
<RuntimeIdentifiers>linux-x64;win-x64;osx-x64;osx-arm64</RuntimeIdentifiers>
|
2026-02-18 10:43:27 -05:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Avalonia" Version="11.2.3" />
|
|
|
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.2.3" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.2.3" />
|
|
|
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.3" />
|
|
|
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.3" />
|
|
|
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="11.2.3" />
|
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.2">
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.2" />
|
2026-02-18 16:15:54 -05:00
|
|
|
<PackageReference Include="MySqlConnector" Version="2.5.0" />
|
2026-02-18 10:43:27 -05:00
|
|
|
<PackageReference Include="Serilog" Version="4.2.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Extensions.Logging" Version="9.0.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
|
feat: Implement provisioning pipelines for subscription management
- Add ReactivatePipeline to handle subscription reactivation, including scaling Docker services, health verification, status updates, audit logging, and broadcasting status changes.
- Introduce RotateCredentialsPipeline for OAuth2 credential rotation, managing the deletion of old apps, creation of new ones, credential storage, access verification, and audit logging.
- Create StepRunner to manage job step execution, including lifecycle management and progress broadcasting via SignalR.
- Implement SuspendPipeline for subscription suspension, scaling down services, updating statuses, logging audits, and broadcasting changes.
- Add UpdateScreenLimitPipeline to update Xibo CMS screen limits and record snapshots.
- Introduce XiboFeatureManifests for hardcoded feature ACLs per role.
- Add docker-compose.dev.yml for local development with PostgreSQL setup.
2026-03-18 10:27:26 -04:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="9.0.2" />
|
|
|
|
|
<PackageReference Include="Refit.HttpClientFactory" Version="8.0.0" />
|
2026-02-18 10:43:27 -05:00
|
|
|
<PackageReference Include="SSH.NET" Version="2024.2.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\OTSSignsOrchestrator.Core\OTSSignsOrchestrator.Core.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2026-02-25 07:36:24 -05:00
|
|
|
<ItemGroup>
|
|
|
|
|
<AvaloniaResource Include="Assets\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2026-02-18 10:43:27 -05:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2026-02-27 22:15:24 -05:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="..\templates\settings-custom.php.template">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Link>templates/settings-custom.php.template</Link>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2026-02-18 10:43:27 -05:00
|
|
|
</Project>
|