1
- <Project Sdk =" Microsoft.NET.Sdk.Web " >
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >netcoreapp2.0</ TargetFrameworks >
4
+ <TargetFramework >netcoreapp2.1</ TargetFramework >
5
5
<PreserveCompilationContext >true</PreserveCompilationContext >
6
6
<AssemblyName >MySqlConnector.Performance</AssemblyName >
7
7
<OutputType >Exe</OutputType >
12
12
</PropertyGroup >
13
13
14
14
<ItemGroup >
15
- <PackageReference Include =" Microsoft.AspNetCore.Mvc" Version =" 2.0.0-*" />
16
- <PackageReference Include =" Microsoft.AspNetCore.Server.Kestrel" Version =" 2.0.0-*" />
17
- <PackageReference Include =" Microsoft.Extensions.Configuration.EnvironmentVariables" Version =" 2.0.0-*" />
18
- <PackageReference Include =" Microsoft.Extensions.Configuration.FileExtensions" Version =" 2.0.0-*" />
19
- <PackageReference Include =" Microsoft.Extensions.Configuration.Json" Version =" 2.0.0-*" />
20
- <PackageReference Include =" Microsoft.Extensions.Configuration.CommandLine" Version =" 2.0.0-*" />
21
- <PackageReference Include =" Microsoft.Extensions.Logging" Version =" 2.0.0-*" />
22
- <PackageReference Include =" Microsoft.Extensions.Logging.Console" Version =" 2.0.0-*" />
23
- <PackageReference Include =" Microsoft.Extensions.Logging.Debug" Version =" 2.0.0-*" />
24
- <PackageReference Include =" Microsoft.Extensions.Options.ConfigurationExtensions" Version =" 2.0.0-*" />
15
+ <PackageReference Include =" Microsoft.AspNetCore.All" Version =" 2.1.0" />
25
16
</ItemGroup >
26
17
27
18
<ItemGroup Condition =" '$(Configuration)' != 'Baseline' " >
28
19
<ProjectReference Include =" ..\..\src\MySqlConnector\MySqlConnector.csproj" />
29
20
</ItemGroup >
30
21
31
22
<ItemGroup Condition =" '$(Configuration)' == 'Baseline' " >
32
- <PackageReference Include =" MySql.Data" Version =" 7 .0.7-m61 " />
23
+ <PackageReference Include =" MySql.Data" Version =" 8 .0.11 " />
33
24
</ItemGroup >
34
25
<PropertyGroup Condition =" '$(Configuration)' == 'Baseline' " >
35
26
<DefineConstants >BASELINE</DefineConstants >
36
27
</PropertyGroup >
37
28
29
+ <ItemGroup >
30
+ <None Update =" appsettings.json" >
31
+ <CopyToOutputDirectory >Always</CopyToOutputDirectory >
32
+ </None >
33
+ <None Update =" config.json" >
34
+ <CopyToOutputDirectory >Always</CopyToOutputDirectory >
35
+ </None >
36
+ </ItemGroup >
37
+
38
38
</Project >
0 commit comments