mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
![renovate[bot]](/assets/img/avatar_default.png)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ike <137194738+ike-kottlowski@users.noreply.github.com>
22 lines
714 B
XML
22 lines
714 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<UserSecretsId>bitwarden-Sso</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Sso' " />
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Sso-SelfHost' " />
|
|
<ItemGroup>
|
|
<!-- This is a transitive dependency to Sustainsys.Saml2.AspNetCore2 -->
|
|
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
|
|
|
|
<PackageReference Include="Sustainsys.Saml2.AspNetCore2" Version="2.9.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\src\Core\Core.csproj" />
|
|
<ProjectReference Include="..\..\..\src\SharedWeb\SharedWeb.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|