83fae1dfa9
See https://github.com/advisories/GHSA-5crp-9r3c-p9vr
(cherry picked from commit 870c02143b
)
41 lines
2.4 KiB
XML
41 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<ProjectGuid>{27B00618-A6F2-4828-B922-05CAEB08C286}</ProjectGuid>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<LangVersion>7.2</LangVersion>
|
|
<!-- The Godot editor uses the Debug Godot API assemblies -->
|
|
<GodotApiConfiguration>Debug</GodotApiConfiguration>
|
|
<GodotSourceRootPath>$(SolutionDir)/../../../../</GodotSourceRootPath>
|
|
<GodotOutputDataDir>$(GodotSourceRootPath)/bin/GodotSharp</GodotOutputDataDir>
|
|
<GodotApiAssembliesDir>$(GodotOutputDataDir)/Api/$(GodotApiConfiguration)</GodotApiAssembliesDir>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" Exists('$(GodotApiAssembliesDir)/GodotSharp.dll') ">
|
|
<!-- The project is part of the Godot source tree -->
|
|
<!-- Use the Godot source tree output folder instead of '$(ProjectDir)/bin' -->
|
|
<OutputPath>$(GodotOutputDataDir)/Tools</OutputPath>
|
|
<!-- Must not append '$(TargetFramework)' to the output path in this case -->
|
|
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="GodotTools.IdeMessaging" Version="1.1.1" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3.0" ExcludeAssets="runtime" PrivateAssets="all" />
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="Mono.Cecil" Version="0.11.3" />
|
|
<Reference Include="GodotSharp">
|
|
<HintPath>$(GodotApiAssembliesDir)/GodotSharp.dll</HintPath>
|
|
<Private>False</Private>
|
|
</Reference>
|
|
<Reference Include="GodotSharpEditor">
|
|
<HintPath>$(GodotApiAssembliesDir)/GodotSharpEditor.dll</HintPath>
|
|
<Private>False</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GodotTools.BuildLogger\GodotTools.BuildLogger.csproj" />
|
|
<ProjectReference Include="..\GodotTools.ProjectEditor\GodotTools.ProjectEditor.csproj" />
|
|
<ProjectReference Include="..\GodotTools.Core\GodotTools.Core.csproj" />
|
|
<!-- Include it if this is an SCons build targeting Windows, or if it's not an SCons build but we're on Windows -->
|
|
<ProjectReference Include="..\GodotTools.OpenVisualStudio\GodotTools.OpenVisualStudio.csproj" Condition=" '$(GodotPlatform)' == 'windows' Or ( '$(GodotPlatform)' == '' And '$(OS)' == 'Windows_NT' ) " />
|
|
</ItemGroup>
|
|
</Project>
|