-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskApp.csproj
More file actions
32 lines (29 loc) · 1.68 KB
/
Copy pathTaskApp.csproj
File metadata and controls
32 lines (29 loc) · 1.68 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build" Version="17.8.29" />
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="17.8.29" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.0-preview1.25120.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.9.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Utils" Version="8.0.7" />
<PackageReference Include="NuGet.Common" Version="6.14.0" />
<PackageReference Include="NuGet.Packaging" Version="6.14.0" />
<PackageReference Include="NuGet.Protocol" Version="6.14.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.9.0" />
</ItemGroup>
</Project>