mirror of
https://github.com/bitwarden/server
synced 2025-12-27 13:43:18 +00:00
Improves code generation of enums for the server bindings in the sdk. Bindings will now use the appropiate variable name from the server. Works by adding a filter which appends x-enum-varnames to enums with the name from c#.
20 lines
602 B
XML
20 lines
602 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>
|
|
<PackageReference Include="MessagePack" Version="2.5.140" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|