-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Packages.props
More file actions
44 lines (44 loc) · 2.75 KB
/
Copy pathDirectory.Packages.props
File metadata and controls
44 lines (44 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
</PropertyGroup>
<ItemGroup>
<!-- Azure Monitor OpenTelemetry Distro (vendors AspNetCore, Http, SqlClient instrumentations) -->
<PackageVersion Include="Azure.Monitor.OpenTelemetry.AspNetCore" Version="1.4.0" />
<!-- Identity -->
<!-- Azure.Identity pinned to 1.14.2 to satisfy the transitive lower bound
from Microsoft.Data.SqlClient 6.1.1; the workshop intent ("1.13.x")
is preserved as the major-line baseline. -->
<PackageVersion Include="Azure.Identity" Version="1.14.2" />
<PackageVersion Include="Microsoft.Identity.Web" Version="3.5.0" />
<!-- Data -->
<!-- SqlClient pinned to 6.1.1 to satisfy the transitive lower bound from
Microsoft.EntityFrameworkCore.SqlServer 10.0.0; the workshop intent
("6.0.0") is preserved as the major-line baseline. -->
<PackageVersion Include="Microsoft.Data.SqlClient" Version="6.1.1" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="10.0.0" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.0" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="10.0.0" />
<!-- ASP.NET Core extras -->
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0" />
<PackageVersion Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageVersion Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
<PackageVersion Include="Swashbuckle.AspNetCore.SwaggerUI" Version="7.2.0" />
<!-- Localization -->
<PackageVersion Include="Microsoft.Extensions.Localization" Version="10.0.0" />
<!-- Test stack -->
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageVersion Include="xunit" Version="2.9.2" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
<!-- coverlet.collector is the collector that fulfils the XPlat Code Coverage data collector
used by `dotnet test` and writes coverage.cobertura.xml. Without this reference, the
friendly name resolves to Microsoft.CodeCoverage which emits a binary `.coverage` file
and ReportGenerator finds nothing.
Note: XML comments cannot contain two consecutive dashes, so the literal CLI flag is
intentionally omitted here. -->
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
</ItemGroup>
</Project>