mirror of
https://github.com/bitwarden/server
synced 2026-02-14 15:33:35 +00:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nick Krantz <125900171+nick-livefront@users.noreply.github.com>
25 lines
774 B
XML
25 lines
774 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<UserSecretsId>bitwarden-Icons</UserSecretsId>
|
|
<MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish>
|
|
<!-- These opt outs should be removed when all warnings are addressed -->
|
|
<WarningsNotAsErrors>$(WarningsNotAsErrors);CA1304;CA1305</WarningsNotAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Icons' " />
|
|
<ItemGroup>
|
|
<PackageReference Include="AngleSharp" Version="1.4.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\public_suffix_list.dat" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SharedWeb\SharedWeb.csproj" />
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|