mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00

* Add new logic for validating encrypted strings * Add benchmarks * Formatting & Comments * Move Debug assertion to just be a test * Address PR feedback pt.1 * Address more PR feedback * Formatting * merge branch 'master' into 'encrypted-string-perf' * Revert "merge branch 'master' into 'encrypted-string-perf'" This reverts commit a20e127c9c8ba2563949a80218b3f787f0260a4b.
19 lines
429 B
XML
19 lines
429 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|