mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-06 17:10:13 +00:00
16 lines
726 B
XML
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 '<Costura />' into your FodyWeavers.xml. eg <Weavers><Costura/></Weavers>. See https://github.com/Fody/Fody/wiki/SampleUsage" />
|
|
|
|
</Target>
|
|
</Project> |