You've already forked linux-packaging-mono
Imported Upstream version 5.0.0.42
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
This commit is contained in:
parent
1190d13a04
commit
6bdd276d05
26
external/corefx/Tools-Override/resolveContract.targets
vendored
Normal file
26
external/corefx/Tools-Override/resolveContract.targets
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<PropertyGroup Condition="'$(ResolveMatchingContract)' == 'true'">
|
||||
<ResolveReferencesDependsOn>
|
||||
ResolveMatchingContract;
|
||||
$(ResolveReferencesDependsOn)
|
||||
</ResolveReferencesDependsOn>
|
||||
<CleanDependsOn>
|
||||
ResolveMatchingContract;
|
||||
$(CleanDependsOn);
|
||||
</CleanDependsOn>
|
||||
</PropertyGroup>
|
||||
|
||||
<Target Name="ResolveMatchingContract">
|
||||
<PropertyGroup>
|
||||
<HasMatchingContract Condition="'$(HasMatchingContract)' == '' and Exists('$(SourceDir)/$(AssemblyName)/ref')">true</HasMatchingContract>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup Condition="'$(HasMatchingContract)' == 'true'">
|
||||
<ResolvedMatchingContract Include="$(ContractOutputPath)/$(MSBuildProjectName).dll" />
|
||||
</ItemGroup>
|
||||
|
||||
<Error Condition="'$(HasMatchingContract)' == 'true' and !Exists('%(ResolvedMatchingContract.Identity)')" Text="ResolveMatchingContract could not find a matching contract '%(ResolvedMatchingContract.Identity)' not found." />
|
||||
</Target>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user