1
0
mirror of https://github.com/bitwarden/server synced 2026-01-10 20:44:05 +00:00

centralize a lot of service registration

This commit is contained in:
Kyle Spearrin
2017-05-05 20:57:33 -04:00
parent 49bee6935a
commit 3daf0bcd18
17 changed files with 348 additions and 183 deletions

View File

@@ -21,7 +21,6 @@
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.1" />
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="1.1.0" />
</ItemGroup>
</Project>

View File

@@ -10,7 +10,6 @@ namespace Bit.Mail
public void Configure(IApplicationBuilder app)
{
app.UseFileServer();
app.UseBrowserLink();
}
}
}