mirror of
https://github.com/bitwarden/server.git
synced 2026-02-04 02:05:30 -06:00
23 lines
757 B
XML
23 lines
757 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<Sdk Name="Bitwarden.Server.Sdk" />
|
|
|
|
<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.11.0]" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\src\Core\Core.csproj" />
|
|
<ProjectReference Include="..\..\..\src\SharedWeb\SharedWeb.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|