mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 13:32:08 +00:00
24 lines
No EOL
1.3 KiB
XML
24 lines
No EOL
1.3 KiB
XML
<?xml version="1.0"?>
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4">
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" />
|
|
<Target Name="CreateManifestResourceNames" />
|
|
<Target Name="CoreCompile" Inputs="$(MSBuildAllProjects);@(Compile);" Outputs="@(IntermediateAssembly);$(NonExistentFile);">
|
|
<GetFrameworkPath>
|
|
<Output TaskParameter="Path" PropertyName="FrameworkPath" />
|
|
</GetFrameworkPath>
|
|
<PropertyGroup>
|
|
<IlAsmCommand>"$(FrameworkPath)\Ilasm.exe" /NOLOGO /DLL /OUTPUT:"@(IntermediateAssembly)" </IlAsmCommand>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' " >
|
|
<IlAsmCommand>$(IlAsmCommand) /DEBUG </IlAsmCommand>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' " >
|
|
<IlAsmCommand>$(IlAsmCommand) /OPTIMIZE </IlAsmCommand>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(AssemblyOriginatorKeyFile)' != '' " >
|
|
<IlAsmCommand>$(IlAsmCommand) /KEY:"$(AssemblyOriginatorKeyFile)" </IlAsmCommand>
|
|
</PropertyGroup>
|
|
<Exec Command="$(IlAsmCommand) @(Compile->'"%(FullPath)"', ' ')" Outputs="@(IntermediateAssembly)" />
|
|
<CallTarget Targets="$(TargetsTriggeredByCompilation)" Condition="'$(TargetsTriggeredByCompilation)' != ''" />
|
|
</Target>
|
|
</Project> |