mirror of
https://github.com/bitwarden/server.git
synced 2025-05-09 21:52:17 -05:00
30 lines
920 B
XML
30 lines
920 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<Version>1.30.4</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.10" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.9" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="Views\Shared\_BillingInformation.cshtml">
|
|
<Pack>$(IncludeRazorContentInPack)</Pack>
|
|
</Content>
|
|
<Content Update="Views\Tools\CreateUpdateTransaction.cshtml">
|
|
<Pack>$(IncludeRazorContentInPack)</Pack>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|