Files
server/util/Setup/Setup.csproj
Justin Baur 48060b0867 [PM-35150] Make Setup testable and add test for install (#7445)
* Make `Setup` testable and add test for install

* Update util/Setup/Program.cs

Co-authored-by: Derek Nance <dnance@bitwarden.com>

* Update other callsites

---------

Co-authored-by: Derek Nance <dnance@bitwarden.com>
2026-04-17 10:47:41 -04:00

29 lines
809 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<NoWarn>1701;1702;1705;NU1701</NoWarn>
<!-- These opt outs should be removed when all warnings are addressed -->
<WarningsNotAsErrors>$(WarningsNotAsErrors);CA1305</WarningsNotAsErrors>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Templates\**\*.hbs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Handlebars.Net" Version="2.1.6" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
<PackageReference Include="YamlDotNet" Version="11.2.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Migrator\Migrator.csproj" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Setup.Test" />
</ItemGroup>
</Project>