HaPpY hApPy
다른 컴퓨터에서 vs 2017 .net core angular localhost 접속하기 본문
var host = new WebHostBuilder()
.UseUrls("http://*:5000;")
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseStartup<Startup>()
.Build();
host.Run();
그리고 아래에 보라색 추가.
"start": "concurrently \"webpack-dev-server --env=dev --hot --inline --port 8080 --host 192.168.254.77\" \"dotnet run\" ",
'Visual Studio > Settings' 카테고리의 다른 글
비주얼 스튜디오 메모리 부족 out of memory exception (Visual studio) (0) | 2017.04.04 |
---|---|
FxCop 10.0 설치 과정에 SDK 7.1 .NET Framework 4 설치 어쩌고 귀찮으신분들을 위해 (0) | 2014.09.02 |
MSVCR110.DLL 에러 관련 (0) | 2013.01.14 |