Final polish on v0.7

This commit is contained in:
Daniel J. Summers 2021-01-08 19:28:26 -05:00
parent 7fc7012b29
commit 0446098e09
3 changed files with 6 additions and 3 deletions

View File

@ -23,7 +23,10 @@ else
} }
else else
{ {
<p>You do not have an employment profile established; click &ldquo;Profile&rdquo;* in the menu to get started!</p> <p>
You do not have an employment profile established; click &ldquo;Edit Profile&rdquo; in the menu to get
started!
</p>
} }
@{ @{
/** /**

View File

@ -14,7 +14,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<WebPublishMethod>FileSystem</WebPublishMethod> <WebPublishMethod>FileSystem</WebPublishMethod>
<SiteUrlToLaunchAfterPublish /> <SiteUrlToLaunchAfterPublish />
<TargetFramework>net5.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier> <RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<PublishSingleFile>True</PublishSingleFile> <PublishSingleFile>True</PublishSingleFile>
<PublishTrimmed>True</PublishTrimmed> <PublishTrimmed>True</PublishTrimmed>
<ProjectGuid>35aeecbf-489d-41c5-9ba3-6e43ad7a8196</ProjectGuid> <ProjectGuid>35aeecbf-489d-41c5-9ba3-6e43ad7a8196</ProjectGuid>

View File

@ -35,7 +35,7 @@ namespace JobsJobsJobs.Server
services.AddDbContext<JobsDbContext>(options => services.AddDbContext<JobsDbContext>(options =>
{ {
options.UseNpgsql(Configuration.GetConnectionString("JobsDb"), o => o.UseNodaTime()); options.UseNpgsql(Configuration.GetConnectionString("JobsDb"), o => o.UseNodaTime());
options.LogTo(System.Console.WriteLine, Microsoft.Extensions.Logging.LogLevel.Information); // options.LogTo(System.Console.WriteLine, Microsoft.Extensions.Logging.LogLevel.Information);
}); });
services.AddSingleton<IClock>(SystemClock.Instance); services.AddSingleton<IClock>(SystemClock.Instance);
services.AddLogging(); services.AddLogging();