Files
ArchiSteamFarm/packages/Costura.Fody.2.0.0-beta0018/build/Costura.Fody.targets
2016-07-03 00:52:45 +02:00

16 lines
726 B
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target
AfterTargets="AfterBuild"
Name="FodyPropertyChangedVerification">
<Error
Condition="$(FodyExecutedWeavers) == '*Undefined*'"
Text="Could not find `FodyWeaversExecuted` MSBuild property. It is possible you need to update Fody." />
<Error
Condition="!$(FodyExecutedWeavers.Contains('Costura;'))"
Text="Costura expected to be executed. You may also need to manually add '&lt;Costura /&gt;' into your FodyWeavers.xml. eg &lt;Weavers&gt;&lt;Costura/&gt;&lt;/Weavers&gt;. See https://github.com/Fody/Fody/wiki/SampleUsage" />
</Target>
</Project>