This repository has been archived by the owner on Sep 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
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
9 changed files
with
282 additions
and
12 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
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
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
16 changes: 16 additions & 0 deletions
16
packages/Costura.Fody.2.0.0-beta0018/build/Costura.Fody.targets
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,16 @@ | ||
<?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> |
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,98 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Choose> | ||
<When Condition="$(NCrunchOriginalSolutionDir) != '' And $(NCrunchOriginalSolutionDir) != '*Undefined*'"> | ||
<PropertyGroup> | ||
<FodySolutionDir>$(NCrunchOriginalSolutionDir)</FodySolutionDir> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(SolutionDir) != '' And $(SolutionDir) != '*Undefined*'"> | ||
<PropertyGroup> | ||
<FodySolutionDir>$(SolutionDir)</FodySolutionDir> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'"> | ||
<PropertyGroup> | ||
<FodySolutionDir>$(MSBuildProjectDirectory)..\..\..\</FodySolutionDir> | ||
</PropertyGroup> | ||
</When> | ||
</Choose> | ||
<Choose> | ||
<When Condition="$(KeyOriginatorFile) != '' And $(KeyOriginatorFile) != '*Undefined*'"> | ||
<PropertyGroup> | ||
<FodyKeyFilePath>$(KeyOriginatorFile)</FodyKeyFilePath> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(AssemblyOriginatorKeyFile) != '' And $(AssemblyOriginatorKeyFile) != '*Undefined*'"> | ||
<PropertyGroup> | ||
<FodyKeyFilePath>$(AssemblyOriginatorKeyFile)</FodyKeyFilePath> | ||
</PropertyGroup> | ||
</When> | ||
<Otherwise > | ||
<PropertyGroup> | ||
<FodyKeyFilePath></FodyKeyFilePath> | ||
</PropertyGroup> | ||
</Otherwise> | ||
</Choose> | ||
<PropertyGroup> | ||
<ProjectWeaverXml>$(ProjectDir)FodyWeavers.xml</ProjectWeaverXml> | ||
<IntermediateDir>$(ProjectDir)$(IntermediateOutputPath)</IntermediateDir> | ||
<FodySignAssembly Condition="$(FodySignAssembly) == '' Or $(FodySignAssembly) == '*Undefined*'">$(SignAssembly)</FodySignAssembly> | ||
<FodyPath Condition="$(FodyPath) == '' Or $(FodyPath) == '*Undefined*'">$(MSBuildThisFileDirectory)..\..\</FodyPath> | ||
</PropertyGroup> | ||
<UsingTask | ||
TaskName="Fody.WeavingTask" | ||
AssemblyFile="$(FodyPath)\Fody.dll" /> | ||
<Target | ||
AfterTargets="AfterCompile" | ||
Condition="Exists(@(IntermediateAssembly))" | ||
Name="FodyTarget" | ||
DependsOnTargets="$(FodyDependsOnTargets)" | ||
Inputs="@(IntermediateAssembly->'%(FullPath)');$(FodyKeyFilePath);$(ProjectWeaverXml)" | ||
Outputs="$(TargetPath)"> | ||
|
||
<Fody.WeavingTask | ||
AssemblyPath="@(IntermediateAssembly)" | ||
IntermediateDir="$(IntermediateDir)" | ||
KeyFilePath="$(FodyKeyFilePath)" | ||
NuGetPackageRoot="$(NuGetPackageRoot)" | ||
ProjectDirectory="$(ProjectDir)" | ||
SolutionDir="$(FodySolutionDir)" | ||
References="@(ReferencePath)" | ||
SignAssembly="$(FodySignAssembly)" | ||
ReferenceCopyLocalPaths="@(ReferenceCopyLocalPaths)" | ||
DefineConstants="$(DefineConstants)" | ||
> | ||
|
||
<Output | ||
TaskParameter="ExecutedWeavers" | ||
PropertyName="FodyExecutedWeavers" /> | ||
</Fody.WeavingTask> | ||
</Target> | ||
|
||
|
||
<UsingTask | ||
TaskName="Fody.VerifyTask" | ||
AssemblyFile="$(FodyPath)\Fody.dll" /> | ||
<Target Condition="'$(NCrunch)' != '1' And Exists($(TargetPath))" | ||
AfterTargets="AfterBuild" | ||
Name="FodyVerifyTarget" | ||
DependsOnTargets="$(FodyVerifyDependsOnTargets)" | ||
Inputs="@(IntermediateAssembly->'%(FullPath)');$(FodyKeyFilePath);$(ProjectWeaverXml)" | ||
Outputs="$(TargetPath)"> | ||
|
||
<Fody.VerifyTask | ||
ProjectDirectory="$(ProjectDir)" | ||
TargetPath="$(TargetPath)" | ||
SolutionDir="$(FodySolutionDir)" | ||
DefineConstants="$(DefineConstants)" | ||
/> | ||
</Target> | ||
|
||
|
||
<!--Support for ncrunch--> | ||
<ItemGroup Condition="'$(NCrunch)' == '1'"> | ||
<None Include="$(FodyPath)\*.*" /> | ||
</ItemGroup> | ||
|
||
</Project> |
98 changes: 98 additions & 0 deletions
98
packages/Fody.1.30.0-beta01/build/portable-net+sl+win+wpa+wp/Fody.targets
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,98 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Choose> | ||
<When Condition="$(NCrunchOriginalSolutionDir) != '' And $(NCrunchOriginalSolutionDir) != '*Undefined*'"> | ||
<PropertyGroup> | ||
<FodySolutionDir>$(NCrunchOriginalSolutionDir)</FodySolutionDir> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(SolutionDir) != '' And $(SolutionDir) != '*Undefined*'"> | ||
<PropertyGroup> | ||
<FodySolutionDir>$(SolutionDir)</FodySolutionDir> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'"> | ||
<PropertyGroup> | ||
<FodySolutionDir>$(MSBuildProjectDirectory)..\..\..\</FodySolutionDir> | ||
</PropertyGroup> | ||
</When> | ||
</Choose> | ||
<Choose> | ||
<When Condition="$(KeyOriginatorFile) != '' And $(KeyOriginatorFile) != '*Undefined*'"> | ||
<PropertyGroup> | ||
<FodyKeyFilePath>$(KeyOriginatorFile)</FodyKeyFilePath> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(AssemblyOriginatorKeyFile) != '' And $(AssemblyOriginatorKeyFile) != '*Undefined*'"> | ||
<PropertyGroup> | ||
<FodyKeyFilePath>$(AssemblyOriginatorKeyFile)</FodyKeyFilePath> | ||
</PropertyGroup> | ||
</When> | ||
<Otherwise > | ||
<PropertyGroup> | ||
<FodyKeyFilePath></FodyKeyFilePath> | ||
</PropertyGroup> | ||
</Otherwise> | ||
</Choose> | ||
<PropertyGroup> | ||
<ProjectWeaverXml>$(ProjectDir)FodyWeavers.xml</ProjectWeaverXml> | ||
<IntermediateDir>$(ProjectDir)$(IntermediateOutputPath)</IntermediateDir> | ||
<FodySignAssembly Condition="$(FodySignAssembly) == '' Or $(FodySignAssembly) == '*Undefined*'">$(SignAssembly)</FodySignAssembly> | ||
<FodyPath Condition="$(FodyPath) == '' Or $(FodyPath) == '*Undefined*'">$(MSBuildThisFileDirectory)..\..\</FodyPath> | ||
</PropertyGroup> | ||
<UsingTask | ||
TaskName="Fody.WeavingTask" | ||
AssemblyFile="$(FodyPath)\Fody.dll" /> | ||
<Target | ||
AfterTargets="AfterCompile" | ||
Condition="Exists(@(IntermediateAssembly))" | ||
Name="FodyTarget" | ||
DependsOnTargets="$(FodyDependsOnTargets)" | ||
Inputs="@(IntermediateAssembly->'%(FullPath)');$(FodyKeyFilePath);$(ProjectWeaverXml)" | ||
Outputs="$(TargetPath)"> | ||
|
||
<Fody.WeavingTask | ||
AssemblyPath="@(IntermediateAssembly)" | ||
IntermediateDir="$(IntermediateDir)" | ||
KeyFilePath="$(FodyKeyFilePath)" | ||
NuGetPackageRoot="$(NuGetPackageRoot)" | ||
ProjectDirectory="$(ProjectDir)" | ||
SolutionDir="$(FodySolutionDir)" | ||
References="@(ReferencePath)" | ||
SignAssembly="$(FodySignAssembly)" | ||
ReferenceCopyLocalPaths="@(ReferenceCopyLocalPaths)" | ||
DefineConstants="$(DefineConstants)" | ||
> | ||
|
||
<Output | ||
TaskParameter="ExecutedWeavers" | ||
PropertyName="FodyExecutedWeavers" /> | ||
</Fody.WeavingTask> | ||
</Target> | ||
|
||
|
||
<UsingTask | ||
TaskName="Fody.VerifyTask" | ||
AssemblyFile="$(FodyPath)\Fody.dll" /> | ||
<Target Condition="'$(NCrunch)' != '1' And Exists($(TargetPath))" | ||
AfterTargets="AfterBuild" | ||
Name="FodyVerifyTarget" | ||
DependsOnTargets="$(FodyVerifyDependsOnTargets)" | ||
Inputs="@(IntermediateAssembly->'%(FullPath)');$(FodyKeyFilePath);$(ProjectWeaverXml)" | ||
Outputs="$(TargetPath)"> | ||
|
||
<Fody.VerifyTask | ||
ProjectDirectory="$(ProjectDir)" | ||
TargetPath="$(TargetPath)" | ||
SolutionDir="$(FodySolutionDir)" | ||
DefineConstants="$(DefineConstants)" | ||
/> | ||
</Target> | ||
|
||
|
||
<!--Support for ncrunch--> | ||
<ItemGroup Condition="'$(NCrunch)' == '1'"> | ||
<None Include="$(FodyPath)\*.*" /> | ||
</ItemGroup> | ||
|
||
</Project> |
59 changes: 59 additions & 0 deletions
59
packages/Resource.Embedder.1.2.2/build/Resource.Embedder.targets
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,59 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Choose> | ||
<When Condition="$(NCrunchOriginalSolutionDir) != '' And $(NCrunchOriginalSolutionDir) != '*Undefined*'"> | ||
<PropertyGroup> | ||
<EmbedderSolutionDir>$(NCrunchOriginalSolutionDir)</EmbedderSolutionDir> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(SolutionDir) != '' And $(SolutionDir) != '*Undefined*'"> | ||
<PropertyGroup> | ||
<EmbedderSolutionDir>$(SolutionDir)</EmbedderSolutionDir> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'"> | ||
<PropertyGroup> | ||
<EmbedderSolutionDir>$(MSBuildProjectDirectory)..\..\..\</EmbedderSolutionDir> | ||
</PropertyGroup> | ||
</When> | ||
</Choose> | ||
<Choose> | ||
<When Condition="$(KeyOriginatorFile) != '' And $(KeyOriginatorFile) != '*Undefined*'"> | ||
<PropertyGroup> | ||
<EmbedderKeyFilePath>$(KeyOriginatorFile)</EmbedderKeyFilePath> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(AssemblyOriginatorKeyFile) != '' And $(AssemblyOriginatorKeyFile) != '*Undefined*'"> | ||
<PropertyGroup> | ||
<EmbedderKeyFilePath>$(AssemblyOriginatorKeyFile)</EmbedderKeyFilePath> | ||
</PropertyGroup> | ||
</When> | ||
<Otherwise> | ||
<PropertyGroup> | ||
<EmbedderKeyFilePath></EmbedderKeyFilePath> | ||
</PropertyGroup> | ||
</Otherwise> | ||
</Choose> | ||
<PropertyGroup> | ||
<IntermediateDir>$(ProjectDir)$(IntermediateOutputPath)</IntermediateDir> | ||
<EmbedderSignAssembly Condition="$(EmbedderSignAssembly) == '' Or $(EmbedderSignAssembly) == '*Undefined*'">$(SignAssembly)</EmbedderSignAssembly> | ||
<EmbedderPath Condition="$(EmbedderPath) == '' Or $(EmbedderPath) == '*Undefined*'">$(MSBuildThisFileDirectory)..\</EmbedderPath> | ||
</PropertyGroup> | ||
<UsingTask TaskName="ResourceEmbedder.MsBuild.SatelliteAssemblyEmbedderTask" AssemblyFile="$(EmbedderPath)ResourceEmbedder.MsBuild.dll" /> | ||
<UsingTask TaskName="ResourceEmbedder.MsBuild.SatelliteAssemblyCleanupTask" AssemblyFile="$(EmbedderPath)ResourceEmbedder.MsBuild.dll" /> | ||
<!-- We want to run as soon as the satellite assemblies are generated --> | ||
<Target AfterTargets="GenerateSatelliteAssemblies" Name="EmbedderTarget" DependsOnTargets="$(EmbedderDependsOnTargets)"> | ||
<ResourceEmbedder.MsBuild.SatelliteAssemblyEmbedderTask AssemblyPath="@(IntermediateAssembly)" KeyFilePath="$(EmbedderKeyFilePath)" | ||
ProjectDirectory="$(ProjectDir)" TargetPath="$(TargetPath)" SignAssembly="$(EmbedderSignAssembly)" References="@(ReferencePath)"/> | ||
</Target> | ||
<!--Cleanup after generating --> | ||
<Target AfterTargets="AfterBuild" Name="CleanupTarget" DependsOnTargets="$(EmbedderDependsOnTargets)"> | ||
<ResourceEmbedder.MsBuild.SatelliteAssemblyCleanupTask AssemblyPath="@(IntermediateAssembly)" KeyFilePath="$(EmbedderKeyFilePath)" | ||
ProjectDirectory="$(ProjectDir)" TargetPath="$(TargetPath)" SignAssembly="$(EmbedderSignAssembly)"/> | ||
</Target> | ||
<!--Support for ncrunch--> | ||
<ItemGroup Condition="'$(NCrunch)' == '1'"> | ||
<None Include="$(EmbedderPath)\*.*" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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 +1 @@ | ||
0.5.1.0 | ||
0.5.2.0 |