File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
src/Xamarin.Android.Build.Tasks/MSBuild/Xamarin/Android Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -206,9 +206,14 @@ Copyright (C) 2016 Xamarin. All rights reserved.
206
206
This is because that target uses the Returns functionality. It turns out you cannot
207
207
modify the ItemGroup that is being returned via a Returns on a target.
208
208
-->
209
- <Target Name =" _RemoveResourceDesignerFromResolvedComilationReferences" BeforeTargets =" CollectResolvedCompilationReferencesDesignTime" Condition =" $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'" >
209
+ <Target Name =" _RemoveResourceDesignerFromResolvedComilationReferences"
210
+ BeforeTargets =" CollectResolvedCompilationReferencesDesignTime"
211
+ Condition =" $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'"
212
+ >
210
213
<ItemGroup >
211
- <_ResourceDesignerFiles Include =" %(ReferencePathWithRefAssemblies.Identity)" Condition =" '%(ReferencePathWithRefAssemblies.OriginalPath)' == '$(_GenerateResourceDesignerAssemblyOutput)'" />
214
+ <_ResourceDesignerFiles Include =" %(ReferencePathWithRefAssemblies.Identity)"
215
+ Condition =" '%(ReferencePathWithRefAssemblies.OriginalPath)' == '$(_GenerateResourceDesignerAssemblyOutput)'"
216
+ />
212
217
<ReferencePathWithRefAssemblies Remove =" @(_ResourceDesignerFiles)" />
213
218
</ItemGroup >
214
219
</Target >
You can’t perform that action at this time.
0 commit comments