Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to .NET Core 3.1 #718

Merged
merged 47 commits into from
Dec 18, 2019
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
16304fe
Build everything for .NET Core 3.0.0
tomkerkhove Sep 25, 2019
5d0fc7c
Update everything to .NET Core 3.0.0
tomkerkhove Sep 25, 2019
ee6cdc1
Merge master
tomkerkhove Sep 30, 2019
c0b59d1
WIP
tomkerkhove Sep 30, 2019
a06cd46
Build everything for .NET Core 3.0.0
tomkerkhove Sep 25, 2019
f0978f7
Update everything to .NET Core 3.0.0
tomkerkhove Sep 25, 2019
d752301
WIP
tomkerkhove Sep 30, 2019
4763f2b
Update CronScheduler.AspNetCor
tomkerkhove Oct 11, 2019
41835e9
Merge
tomkerkhove Oct 11, 2019
64c844f
Initial buildable version
tomkerkhove Oct 11, 2019
afe7dd4
Fix broken dependencies and use ILogger<T>
tomkerkhove Oct 12, 2019
1517dd3
Bring back OpenAPI docs!
tomkerkhove Oct 12, 2019
843bf4b
Fix Dockerfile
tomkerkhove Oct 12, 2019
4a122d7
Merge master
tomkerkhove Oct 21, 2019
2806069
Merge
tomkerkhove Oct 21, 2019
aab7c94
Finalize merge
tomkerkhove Oct 21, 2019
b2ebda0
Use 3.0.0 as RuntimeFrameworkVersion
tomkerkhove Oct 21, 2019
3c82bef
Re-add parameter names
tomkerkhove Oct 21, 2019
dfcf612
Provide new Swagger UI
tomkerkhove Oct 21, 2019
e8a97e1
Merge branch 'master' into feature-net-core-3
tomkerkhove Oct 25, 2019
ef348e3
Merge master
tomkerkhove Nov 28, 2019
b5ab868
Fix build
tomkerkhove Nov 28, 2019
cb65f37
Update dependencies
tomkerkhove Nov 28, 2019
cb5310e
Code quality
tomkerkhove Nov 28, 2019
17a1638
Hook in Serilog
tomkerkhove Dec 2, 2019
5e9bcc6
Remove legacy
tomkerkhove Dec 3, 2019
b8d1760
Use netcoreapp3.1 LTS
tomkerkhove Dec 6, 2019
186bd40
Use 3.1.100 SDK in builds
tomkerkhove Dec 6, 2019
829a70f
Install correct version
tomkerkhove Dec 6, 2019
795d8f4
Fix configuration
tomkerkhove Dec 6, 2019
8f1e426
Revert to LogLevel
tomkerkhove Dec 6, 2019
33fd0e6
Merge branch 'master' into feature-net-core-3
tomkerkhove Dec 6, 2019
a5f2ecb
Document traces for Application Insights
tomkerkhove Dec 7, 2019
6750c79
Add issue number & docs for traces
tomkerkhove Dec 7, 2019
1f4f672
Update badges
tomkerkhove Dec 7, 2019
f6277f6
Dcoument exploring APIS
tomkerkhove Dec 7, 2019
b292026
Fix order
tomkerkhove Dec 7, 2019
b2c3d73
Use badge instead
tomkerkhove Dec 7, 2019
f5d88bf
Small fix for changelog
tomkerkhove Dec 7, 2019
8f559e2
Fix markdown styling
tomkerkhove Dec 7, 2019
28e6d13
Merge master
tomkerkhove Dec 11, 2019
d92c748
Fix broken API endpoints
tomkerkhove Dec 13, 2019
1f57599
Wire-up Serilog
tomkerkhove Dec 18, 2019
a975fd6
Tweak logs
tomkerkhove Dec 18, 2019
02c8510
Add request logging
tomkerkhove Dec 18, 2019
6f31957
Cleanup for code quality
tomkerkhove Dec 18, 2019
fdd4337
Merge branch 'master' into feature-net-core-3
tomkerkhove Dec 18, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use 3.0.0 as RuntimeFrameworkVersion
Signed-off-by: Tom Kerkhove <kerkhove.tom@gmail.com>
  • Loading branch information
tomkerkhove committed Oct 21, 2019
commit b2ebda095e39d1ffca974cbfd07c25369fec951b
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<RuntimeFrameworkVersion>2.2.3</RuntimeFrameworkVersion>
<RuntimeFrameworkVersion>3.0.0</RuntimeFrameworkVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<RuntimeFrameworkVersion>2.2.3</RuntimeFrameworkVersion>
<RuntimeFrameworkVersion>3.0.0</RuntimeFrameworkVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
4 changes: 2 additions & 2 deletions src/Promitor.Core.Telemetry/Promitor.Core.Telemetry.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<RuntimeFrameworkVersion>2.2.3</RuntimeFrameworkVersion>
<RuntimeFrameworkVersion>3.0.0</RuntimeFrameworkVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
7 changes: 6 additions & 1 deletion src/Promitor.Scraper.Host/Program.cs
Original file line number Diff line number Diff line change
@@ -36,7 +36,12 @@ public static IHostBuilder BuildWebHost(string[] args)
.ConfigureWebHostDefaults(webHostBuilder =>
{
webHostBuilder.UseKestrel(kestrelServerOptions => { kestrelServerOptions.AddServerHeader = false; })
.ConfigureLogging((hostContext, loggingBuilder) => { loggingBuilder.AddConsole(consoleLoggerOptions => consoleLoggerOptions.TimestampFormat = "[u]"); })
.ConfigureLogging((hostContext, loggingBuilder) =>
{
loggingBuilder.AddConsole(consoleLoggerOptions => consoleLoggerOptions.TimestampFormat = "[HH:mm:ss] ");
loggingBuilder.AddDebug();
loggingBuilder.SetMinimumLevel(LogLevel.Information);
})
.UseConfiguration(configuration)
.UseUrls(endpointUrl)
.UseStartup<Startup>();
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<RuntimeFrameworkVersion>2.2.3</RuntimeFrameworkVersion>
<RuntimeFrameworkVersion>3.0.0</RuntimeFrameworkVersion>
<IsTestProject>true</IsTestProject>
</PropertyGroup>