mirror of
https://github.com/bitwarden/server
synced 2025-12-06 00:03:34 +00:00
30 lines
919 B
XML
30 lines
919 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<Version>1.30.1</Version>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<RootNamespace>Bit.Admin</RootNamespace>
|
|
<UserSecretsId>bitwarden-Admin</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\util\Migrator\Migrator.csproj" />
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.5" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="Views\Shared\_BillingInformation.cshtml">
|
|
<Pack>$(IncludeRazorContentInPack)</Pack>
|
|
</Content>
|
|
<Content Update="Views\Tools\CreateUpdateTransaction.cshtml">
|
|
<Pack>$(IncludeRazorContentInPack)</Pack>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|