forked from KlappPc/ASFui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
128 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -252,4 +252,6 @@ paket-files/ | |
.idea/ | ||
*.sln.iml | ||
|
||
out/ | ||
out/ | ||
|
||
ASFui/FodyWeavers.xsd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Weavers> | ||
<Costura/> | ||
|
||
<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd"> | ||
<Costura /> | ||
</Weavers> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
92 changes: 0 additions & 92 deletions
92
packages/Fody.1.29.4/build/portable-net+sl+win+wpa+wp/Fody.targets
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<PropertyGroup> | ||
<ProjectWeaverXml Condition="'$(ProjectWeaverXml)' == ''">$(ProjectDir)FodyWeavers.xml</ProjectWeaverXml> | ||
<FodyPath Condition="'$(FodyPath)' == ''">$(MSBuildThisFileDirectory)..\</FodyPath> | ||
<FodyAssemblyDirectory Condition="'$(MSBuildRuntimeType)' == 'Core'">$(FodyPath)netstandardtask</FodyAssemblyDirectory> | ||
<FodyAssemblyDirectory Condition="'$(MSBuildRuntimeType)' != 'Core'">$(FodyPath)netclassictask</FodyAssemblyDirectory> | ||
<FodyAssembly Condition="'$(FodyAssembly)' == ''">$(FodyAssemblyDirectory)\Fody.dll</FodyAssembly> | ||
<DefaultItemExcludes>$(DefaultItemExcludes);FodyWeavers.xsd</DefaultItemExcludes> | ||
<FodyGenerateXsd Condition="'$(FodyGenerateXsd)' == ''">true</FodyGenerateXsd> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="Exists('$(ProjectWeaverXml)')"> | ||
<UpToDateCheckInput Include="$(ProjectWeaverXml)" /> | ||
<CustomAdditionalCompileInputs Include="$(ProjectWeaverXml)" /> | ||
</ItemGroup> | ||
|
||
<!-- Support for NCrunch --> | ||
<ItemGroup Condition="'$(NCrunch)' == '1'"> | ||
<None Include="$(FodyAssemblyDirectory)\*.*" /> | ||
<None Include="@(WeaverFiles)" /> | ||
</ItemGroup> | ||
|
||
<UsingTask TaskName="Fody.WeavingTask" AssemblyFile="$(FodyAssembly)" /> | ||
<UsingTask TaskName="Fody.UpdateReferenceCopyLocalTask" AssemblyFile="$(FodyAssembly)" /> | ||
<UsingTask TaskName="Fody.VerifyTask" AssemblyFile="$(FodyAssembly)" /> | ||
|
||
<Target | ||
Name="FodyTarget" | ||
AfterTargets="AfterCompile" | ||
Condition="Exists('@(IntermediateAssembly)') And $(DesignTimeBuild) != true And $(DisableFody) != true" | ||
DependsOnTargets="$(FodyDependsOnTargets)" | ||
Inputs="@(IntermediateAssembly);$(ProjectWeaverXml)" | ||
Outputs="$(IntermediateOutputPath)$(MSBuildProjectFile).Fody.CopyLocal.cache"> | ||
|
||
<Fody.WeavingTask | ||
AssemblyFile="@(IntermediateAssembly)" | ||
IntermediateDirectory="$(ProjectDir)$(IntermediateOutputPath)" | ||
KeyOriginatorFile="$(KeyOriginatorFile)" | ||
AssemblyOriginatorKeyFile="$(AssemblyOriginatorKeyFile)" | ||
ProjectDirectory="$(MSBuildProjectDirectory)" | ||
ProjectFile="$(MSBuildProjectFullPath)" | ||
SolutionDirectory="$(SolutionDir)" | ||
References="@(ReferencePath)" | ||
SignAssembly="$(SignAssembly)" | ||
ReferenceCopyLocalFiles="@(ReferenceCopyLocalPaths)" | ||
DefineConstants="$(DefineConstants)" | ||
DebugType="$(DebugType)" | ||
DocumentationFile="@(DocFileItem->'%(FullPath)')" | ||
WeaverFiles="@(WeaverFiles)" | ||
NCrunchOriginalSolutionDirectory="$(NCrunchOriginalSolutionDir)" | ||
IntermediateCopyLocalFilesCache="$(IntermediateOutputPath)$(MSBuildProjectFile).Fody.CopyLocal.cache" | ||
GenerateXsd="$(FodyGenerateXsd)" | ||
> | ||
|
||
<Output | ||
TaskParameter="ExecutedWeavers" | ||
PropertyName="FodyExecutedWeavers" /> | ||
|
||
</Fody.WeavingTask> | ||
|
||
<ItemGroup> | ||
<FileWrites Include="$(IntermediateOutputPath)$(MSBuildProjectFile).Fody.CopyLocal.cache" /> | ||
</ItemGroup> | ||
|
||
</Target> | ||
|
||
<Target | ||
Name="FodyUpdateCopyLocalFilesTarget" | ||
AfterTargets="FodyTarget" | ||
> | ||
|
||
<Fody.UpdateReferenceCopyLocalTask | ||
ReferenceCopyLocalFiles="@(ReferenceCopyLocalPaths)" | ||
IntermediateCopyLocalFilesCache="$(IntermediateOutputPath)$(MSBuildProjectFile).Fody.CopyLocal.cache" | ||
> | ||
|
||
<Output | ||
TaskParameter="UpdatedReferenceCopyLocalFiles" | ||
ItemName="FodyUpdatedReferenceCopyLocalPaths" /> | ||
|
||
</Fody.UpdateReferenceCopyLocalTask> | ||
|
||
<ItemGroup> | ||
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" /> | ||
<ReferenceCopyLocalPaths Include="@(FodyUpdatedReferenceCopyLocalPaths)" /> | ||
</ItemGroup> | ||
|
||
</Target> | ||
|
||
<Target | ||
Name="FodyVerifyTarget" | ||
AfterTargets="AfterBuild" | ||
Condition="'$(NCrunch)' != '1' And $(FodyExecutedWeavers) != '' And $(DisableFody) != true" | ||
DependsOnTargets="$(FodyVerifyDependsOnTargets)"> | ||
|
||
<Fody.VerifyTask | ||
ProjectDirectory="$(MSBuildProjectDirectory)" | ||
TargetPath="$(TargetPath)" | ||
SolutionDirectory="$(SolutionDir)" | ||
DefineConstants="$(DefineConstants)" | ||
NCrunchOriginalSolutionDirectory="$(NCrunchOriginalSolutionDir)" | ||
/> | ||
</Target> | ||
|
||
</Project> |