Tek dosya .Net Core 3.0 Web API uygulaması appsettings.json
, tek dosya uygulamasının oluşturulduğu aynı dizinde bulunan dosyayı arayacak şekilde nasıl yapılandırılmalıdır ?
Koşu sonrası
dotnet publish -r win-x64 -c Release /p:PublishSingleFile=true
Dizin şöyle görünür:
XX/XX/XXXX XX:XX PM <DIR> .
XX/XX/XXXX XX:XX PM <DIR> ..
XX/XX/XXXX XX:XX PM 134 appsettings.json
XX/XX/XXXX XX:XX PM 92,899,983 APPNAME.exe
XX/XX/XXXX XX:XX PM 541 web.config
3 File(s) 92,900,658 bytes
Ancak, çalıştırmaya çalışmak APPNAME.exe
aşağıdaki hatayla sonuçlanır
An exception occurred, System.IO.FileNotFoundException: The configuration file 'appsettings.json' was not found and is not optional. The physical path is 'C:\Users\USERNAME\AppData\Local\Temp\.net\APPNAME\kyl3yc02.5zs\appsettings.json'.
at Microsoft.Extensions.Configuration.FileConfigurationProvider.HandleException(ExceptionDispatchInfo info)
at Microsoft.Extensions.Configuration.FileConfigurationProvider.Load(Boolean reload)
at Microsoft.Extensions.Configuration.FileConfigurationProvider.Load()
at Microsoft.Extensions.Configuration.ConfigurationRoot..ctor(IList`1 providers)
at Microsoft.Extensions.Configuration.ConfigurationBuilder.Build()
at Microsoft.AspNetCore.Hosting.WebHostBuilder.BuildCommonServices(AggregateException& hostingStartupErrors)
at Microsoft.AspNetCore.Hosting.WebHostBuilder.Build()
...
Benzer ancak farklı bir sorunun yanı sıra diğer Stack Overflow sorularının çözümlerini denedim .
Aşağıdakileri geçmeye çalıştım SetBasePath()
Directory.GetCurrentDirectory()
environment.ContentRootPath
Path.GetDirectoryName(Assembly.GetEntryAssembly().Location)
Her biri aynı hataya yol açtı.
Sorunun kökü, PublishSingleFile
ikili dosyanın sıkıştırılmış ve bir dizinden çalıştırılmasıdır temp
.
Bu tek dosya uygulaması durumunda, aradığı konum appsettings.json
aşağıdaki dizindir:
C:\Users\USERNAME\AppData\Local\Temp\.net\APPNAME\kyl3yc02.5zs
Yukarıdaki yöntemlerin tümü, dosyanın açıldığı yeri gösterir; bu, çalıştırıldığı yerden farklıdır.