mirror of
https://github.com/bitwarden/server.git
synced 2025-06-26 13:48:47 -05:00

* Add DynamicClientStore * Formatting * Fix Debug assertion * Make Identity internals visible to its unit tests * Add installation client provider tests * Add internal client provider tests * Add DynamicClientStore tests * Fix namespaces after merge * Format * Add docs and remove TODO comments * Use preferred prefix for API keys --------- Co-authored-by: Jared Snider <116684653+JaredSnider-Bitwarden@users.noreply.github.com>
20 lines
588 B
XML
20 lines
588 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<UserSecretsId>bitwarden-Identity</UserSecretsId>
|
|
<MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Identity' " />
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Identity-SelfHost' " />
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SharedWeb\SharedWeb.csproj" />
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="Identity.Test" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|