1
0
mirror of https://github.com/bitwarden/server synced 2025-12-11 05:43:35 +00:00

adjust default root namespaces

This commit is contained in:
Kyle Spearrin
2017-09-08 11:45:20 -04:00
parent 6573bf44ab
commit 7cdba3e81a
6 changed files with 6 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
namespace Server
namespace Bit.Server
{
public class Program
{

View File

@@ -3,6 +3,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish>
<RootNamespace>Bit.Server</RootNamespace>
</PropertyGroup>
<ItemGroup>

View File

@@ -3,7 +3,7 @@ using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
namespace Server
namespace Bit.Server
{
public class Startup
{