mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<UserSecretsId>bitwarden-Api</UserSecretsId>
|
|
<MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish>
|
|
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
|
|
<ANCMPreConfiguredForIIS>true</ANCMPreConfiguredForIIS>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<NoWarn>1701;1702;1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<NoWarn>1701;1702;1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SharedWeb\SharedWeb.csproj" />
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Choose>
|
|
<When Condition="!$(DefineConstants.Contains('OSS'))">
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\bitwarden_license\src\CommCore\CommCore.csproj" />
|
|
</ItemGroup>
|
|
</When>
|
|
</Choose>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.Messaging.EventGrid" Version="4.7.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.9" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<DotNetCliToolReference Include="Swashbuckle.AspNetCore.Cli" Version="4.0.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|