17 lines
747 B
XML
17 lines
747 B
XML
<Project>
|
|
|
|
<Target Name="CreateManifestResourceNames" />
|
|
|
|
<Target Name="CoreCompile" DependsOnTargets="$(CoreCompileDependsOn)">
|
|
<ItemGroup>
|
|
<ReferencePath Remove="@(ReferencePath)"
|
|
Condition="'%(FileName)' != 'System.Console' AND
|
|
'%(FileName)' != 'System.Runtime'" />
|
|
</ItemGroup>
|
|
<Message Importance="high" Text="ReferencePath: @(ReferencePath)" />
|
|
<Exec Command="dotnet run --project "$(MSBuildThisFileDirectory)\..\cmc\cmc.csproj" -- @(Compile->'"%(Identity)"', ' ') /o "@(IntermediateAssembly)" @(ReferencePath->'/r "%(Identity)"', ' ')"
|
|
WorkingDirectory="$(MSBuildProjectDirectory)" />
|
|
</Target>
|
|
|
|
</Project>
|