mirror of
https://github.com/snltty/linker.git
synced 2025-10-23 17:13:12 +08:00
11 lines
696 B
XML
11 lines
696 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<!-- try to import project-specific settings; also use fixed name that was injected into project by NuGet -->
|
|
<PropertyGroup>
|
|
<!-- at this point only MSBuild* property are available -->
|
|
<MSBuildIlMerge1>$(MSBuildProjectDirectory)\$(MSBuildProjectName).ILMerge.props</MSBuildIlMerge1>
|
|
<MSBuildIlMerge2>$(MSBuildProjectDirectory)\ILMerge.props</MSBuildIlMerge2>
|
|
</PropertyGroup>
|
|
<Import Project="$(MSBuildIlMerge1)" Condition="Exists($(MSBuildIlMerge1))"/>
|
|
<Import Project="$(MSBuildIlMerge2)" Condition="Exists($(MSBuildIlMerge2))"/>
|
|
</Project> |