Skip to content

Commit edfbb2d

Browse files
Fixed issue with removed namespace when bundling app
1 parent 8e88d2a commit edfbb2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ASCOM.Alpaca.Simulators/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ private static IHostBuilder CreateHostBuilder(string[] args)
158158
{
159159
webBuilder.UseStartup<Startup>()
160160
#if BUNDLED
161-
.UseContentRoot(Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location))
161+
.UseContentRoot(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location))
162162
#endif
163163
.UseKestrel().ConfigureKestrel(options =>
164164
{

0 commit comments

Comments
 (0)