mirror of
https://github.com/bitwarden/server
synced 2026-02-21 03:43:44 +00:00
26 lines
814 B
XML
26 lines
814 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<Sdk Name="Bitwarden.Server.Sdk" />
|
|
|
|
<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>
|