0
2
llucycodes42
This code contains the following:
- TargetFramework: netcoreapp2.1
- Folder Include: wwwroot
- PackageReference Include: Microsoft.AspNetCore.All: Version=2.1.0
The target framework is netcoreapp2.1, which means that this project will run on the .NET Core 2.1 platform. The wwwroot folder is included in the project so that the wwwroot folder is available as a source directory for the project. Additionally, the Microsoft.AspNetCore.All package is referenced so that all of the ASP.NET Core dependencies are included in the project.
Shortcut: ac_csproj_2.1
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.1.0" />
</ItemGroup>
</Project>