2020-07-20 15:48:12 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-12-28 19:12:32 +01:00
|
|
|
<PropertyGroup>
|
|
|
|
<ProjectGuid>{8FBEC238-D944-4074-8548-B3B524305905}</ProjectGuid>
|
|
|
|
<OutputPath>bin/$(Configuration)</OutputPath>
|
2020-07-20 15:48:12 +02:00
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2019-12-28 19:12:32 +01:00
|
|
|
<RootNamespace>Godot</RootNamespace>
|
2020-07-20 15:48:12 +02:00
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
2019-12-28 19:12:32 +01:00
|
|
|
<DocumentationFile>$(OutputPath)/$(AssemblyName).xml</DocumentationFile>
|
2020-07-20 15:48:12 +02:00
|
|
|
<EnableDefaultItems>false</EnableDefaultItems>
|
2019-12-28 19:12:32 +01:00
|
|
|
</PropertyGroup>
|
2020-07-20 15:48:12 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
<DefineConstants>$(DefineConstants);GODOT</DefineConstants>
|
2019-12-28 19:12:32 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\GodotSharp\GodotSharp.csproj">
|
2020-07-20 15:48:12 +02:00
|
|
|
<Private>false</Private>
|
2019-12-28 19:12:32 +01:00
|
|
|
</ProjectReference>
|
|
|
|
</ItemGroup>
|
2020-07-20 15:48:12 +02:00
|
|
|
<!--
|
|
|
|
We import a props file with auto-generated includes. This works well with Rider.
|
|
|
|
However, Visual Studio and MonoDevelop won't list them in the solution explorer.
|
|
|
|
We can't use wildcards as there may be undesired old files still hanging around.
|
|
|
|
Fortunately code completion, go to definition and such still work.
|
|
|
|
-->
|
|
|
|
<Import Project="Generated\GeneratedIncludes.props" />
|
2019-12-28 19:12:32 +01:00
|
|
|
</Project>
|