Skip to content

Commit

Permalink
Change port and add appsettings build
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Stelly committed Jul 28, 2017
1 parent 3a756cc commit e203969
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion DockerProxy/DockerProxy.csproj
Expand Up @@ -26,5 +26,12 @@
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="1.0.0" />
</ItemGroup>

<ItemGroup>
<Content Update="appsettings.development.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>
1 change: 1 addition & 0 deletions DockerProxy/Program.cs
Expand Up @@ -16,6 +16,7 @@ public static void Main(string[] args)
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseStartup<Startup>()
.UseUrls("http://localhost:5050/")
.Build();

host.Run();
Expand Down

0 comments on commit e203969

Please sign in to comment.