From 0446098e09889806fb0af41fc615cde5cbb97579 Mon Sep 17 00:00:00 2001 From: "Daniel J. Summers" Date: Fri, 8 Jan 2021 19:28:26 -0500 Subject: [PATCH] Final polish on v0.7 --- src/JobsJobsJobs/Client/Pages/Citizen/Dashboard.razor | 5 ++++- .../Server/Properties/PublishProfiles/FolderProfile.pubxml | 2 +- src/JobsJobsJobs/Server/Startup.cs | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/JobsJobsJobs/Client/Pages/Citizen/Dashboard.razor b/src/JobsJobsJobs/Client/Pages/Citizen/Dashboard.razor index 5843972..52fdc8b 100644 --- a/src/JobsJobsJobs/Client/Pages/Citizen/Dashboard.razor +++ b/src/JobsJobsJobs/Client/Pages/Citizen/Dashboard.razor @@ -23,7 +23,10 @@ else } else { -

You do not have an employment profile established; click “Profile”* in the menu to get started!

+

+ You do not have an employment profile established; click “Edit Profile” in the menu to get + started! +

} @{ /** diff --git a/src/JobsJobsJobs/Server/Properties/PublishProfiles/FolderProfile.pubxml b/src/JobsJobsJobs/Server/Properties/PublishProfiles/FolderProfile.pubxml index cece0ca..58b94f3 100644 --- a/src/JobsJobsJobs/Server/Properties/PublishProfiles/FolderProfile.pubxml +++ b/src/JobsJobsJobs/Server/Properties/PublishProfiles/FolderProfile.pubxml @@ -14,7 +14,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. FileSystem net5.0 - win-x64 + linux-x64 True True 35aeecbf-489d-41c5-9ba3-6e43ad7a8196 diff --git a/src/JobsJobsJobs/Server/Startup.cs b/src/JobsJobsJobs/Server/Startup.cs index df84694..824d4ad 100644 --- a/src/JobsJobsJobs/Server/Startup.cs +++ b/src/JobsJobsJobs/Server/Startup.cs @@ -35,7 +35,7 @@ namespace JobsJobsJobs.Server services.AddDbContext(options => { 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(SystemClock.Instance); services.AddLogging();