23 строки
640 B
XML
23 строки
640 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<!-- compile option for v2.0 -->
|
|
<!--
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="$(MicrosoftAspNetCoreAllPackageVersion)" />
|
|
</ItemGroup>
|
|
-->
|
|
|
|
<!-- compile option for v2.1 Preview1 -->
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.1.0-preview1-28291" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\" />
|
|
</ItemGroup>
|
|
</Project>
|