Files
leanCLR_gdext/managed/GodotSharpCompat/GodotSharpCompat.csproj
T
2026-06-08 01:26:30 +08:00

33 lines
1.4 KiB
XML

<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<AssemblyName>GodotSharpCompat</AssemblyName>
<RootNamespace>Godot</RootNamespace>
<NoStandardLib>true</NoStandardLib>
<NoConfig>true</NoConfig>
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<OutputPath>..\..\project\leanclr\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="**\*.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="mscorlib">
<HintPath>../../thirdparty/leanclr/src/libraries/dotnetframework4.x-linux/mscorlib.dll</HintPath>
</Reference>
<Reference Include="System">
<HintPath>../../thirdparty/leanclr/src/libraries/dotnetframework4.x-linux/System.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="CopyLeanClrBcl" AfterTargets="Build">
<ItemGroup>
<BclFiles Include="..\..\thirdparty\leanclr\src\libraries\dotnetframework4.x-linux\*.dll" />
</ItemGroup>
<Copy SourceFiles="@(BclFiles)" DestinationFolder="..\..\project\leanclr\" SkipUnchangedFiles="true" />
</Target>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>