1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-26 02:38:07 +02:00

Upgrade nginx-aspnet-mysql to net6.0 🚀 (#198)

* Upgrade to net6.0 [csproj]
* Upgrade MySqlConnector NuGet package
* Port Program to net6.0
* Upgrade Dockerfile base image
This commit is contained in:
Esteban Solano Granados 2022-03-21 11:43:05 -06:00 committed by GitHub
parent 04f8c9ca12
commit bc95525543
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 416 additions and 86 deletions

View file

@ -1,8 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MySqlConnector" Version="0.61.0" />
<PackageReference Include="MySqlConnector" Version="2.1.2" />
</ItemGroup>
</Project>
</Project>