4d7b7d9b73
This upgrade is needed in order to support reading and editing project files that use Sdks as well as other new features. A common example in 3.2 is having to specify a PackageReference version with a child element rather than the attribute. This is no longer the case now. Partial cherry-pick off3bcd5f8dd
Most of the other changes from that commit were already partially cherry-picked in3928fe200f
.
13 lines
454 B
XML
13 lines
454 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<ProjectGuid>{6CE9A984-37B1-4F8A-8FE9-609F05F071B3}</ProjectGuid>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<LangVersion>7.2</LangVersion>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Build.Framework" Version="16.5.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GodotTools.Core\GodotTools.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|