|
6 | 6 | </PropertyGroup> |
7 | 7 |
|
8 | 8 | <ItemGroup> |
9 | | - <ProjectReference Include="..\..\src\Sentry.AspNetCore\Sentry.AspNetCore.csproj" /> |
10 | 9 | <ProjectReference Include="..\Sentry.Testing\Sentry.Testing.csproj" /> |
11 | 10 | </ItemGroup> |
12 | 11 |
|
13 | | - <!-- |
14 | | - ASP.NET Core on .NET Framework is supported by Microsoft indefinitely on version 2.1 only. |
15 | | - Indeed, version 2.1 has newer nuget packages than version 2.2 (which is out of support). |
16 | | - Thus, we will test on 2.1.*, not 2.*. |
17 | | - See https://dotnet.microsoft.com/platform/support/policy/aspnet |
18 | | - And https://github.com/dotnet/aspnetcore/issues/3753#issuecomment-438046364 |
| 12 | + <ItemGroup Condition="$(TargetFramework) != 'net48'"> |
| 13 | + <ProjectReference Include="..\..\src\Sentry.AspNetCore\Sentry.AspNetCore.csproj" /> |
| 14 | + </ItemGroup> |
19 | 15 |
|
20 | | - Also, JetBrains Rider (via Checkmarx) may report the following security vulnerabilities: |
21 | | - CVE-2019-0815 |
22 | | - CVE-2020-1045 |
23 | | - CVE-2020-1597 |
24 | | - These are safe to ignore for our tests. A real project would resolve them by installing |
25 | | - an updated version of the ASP.NET Core runtime on their hosting server. |
26 | | - See https://github.com/dotnet/aspnetcore/issues/15423 |
27 | | - --> |
| 16 | + <!-- |
| 17 | + ASP.NET Core on .NET Framework is supported by Microsoft indefinitely on version 2.1 only. |
| 18 | + Indeed, version 2.1 has newer nuget packages than version 2.2 (which is out of support). |
| 19 | + Thus, we will test on 2.1.*, not 2.*. |
| 20 | + See https://dotnet.microsoft.com/platform/support/policy/aspnet |
| 21 | + And https://github.com/dotnet/aspnetcore/issues/3753#issuecomment-438046364 |
| 22 | + Also, JetBrains Rider (via Checkmarx) may report the following security vulnerabilities: |
| 23 | + CVE-2019-0815 |
| 24 | + CVE-2020-1045 |
| 25 | + CVE-2020-1597 |
| 26 | + These are safe to ignore for our tests. A real project would resolve them by installing |
| 27 | + an updated version of the ASP.NET Core runtime on their hosting server. |
| 28 | + See https://github.com/dotnet/aspnetcore/issues/15423 |
| 29 | +--> |
28 | 30 | <ItemGroup Condition="$(TargetFramework) == 'net48'"> |
29 | 31 | <PackageReference Include="Microsoft.AspNetCore" Version="2.1.7" /> |
30 | 32 | <PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.1.1" /> |
|
0 commit comments