3928fe200f
By adding a reference to the 'Microsoft.NETFramework.ReferenceAssemblies' nuget package, we can build projects targeting .NET Framework with the dotnet CLI. By referencing this package we also don't need to install Mono on Linux/macOS or .NET Framework on Windows, as the assemblies are taken from the package.
16 lines
627 B
XML
16 lines
627 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<ProjectGuid>{A8CDAD94-C6D4-4B19-A7E7-76C53CC92984}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<LangVersion>7</LangVersion>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.Build" />
|
|
<PackageReference Include="DotNet.Glob" Version="2.1.1" />
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GodotTools.Core\GodotTools.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|