- 
        Couldn't load subscription status. 
- Fork 561
          [Xamarin.Android.Build.Tasks] guard AutoImport.props against empty values
          #7837
        
          New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -22,7 +22,9 @@ https://github.com/dotnet/designs/blob/4703666296f5e59964961464c25807c727282cae/ | |
| <Using Include="Android.OS.Bundle" Alias="Bundle" Platform="Android" /> | ||
| </ItemGroup> | ||
|  | ||
| <ItemGroup Condition=" '$(EnableDefaultAndroidItems)' == 'true' and $([MSBuild]::VersionEquals($(TargetFrameworkVersion), '8.0')) "> | ||
| <ItemGroup Condition=" '$(MonoAndroidResourcePrefix)' != '' and | ||
| '$(EnableDefaultAndroidItems)' == 'true' and | ||
| $([MSBuild]::VersionEquals($(TargetFrameworkVersion), '8.0')) "> | ||
| <!-- Default Resource file inclusion --> | ||
| <!-- https://developer.android.com/guide/topics/resources/providing-resources --> | ||
| <AndroidResource Include="$(MonoAndroidResourcePrefix)\*\*.xml" /> | ||
|  | @@ -35,8 +37,17 @@ https://github.com/dotnet/designs/blob/4703666296f5e59964961464c25807c727282cae/ | |
| <AndroidResource Include="$(MonoAndroidResourcePrefix)\font\*.otf" /> | ||
| <AndroidResource Include="$(MonoAndroidResourcePrefix)\font\*.ttc" /> | ||
| <AndroidResource Include="$(MonoAndroidResourcePrefix)\raw\*" Exclude="$(MonoAndroidResourcePrefix)\raw\.*" /> | ||
| </ItemGroup> | ||
|  | ||
| <ItemGroup Condition=" '$(MonoAndroidAssetsPrefix)' != '' and | ||
| '$(EnableDefaultAndroidItems)' == 'true' and | ||
| $([MSBuild]::VersionEquals($(TargetFrameworkVersion), '8.0')) "> | ||
| <!-- Default Asset file inclusion --> | ||
| <AndroidAsset Include="$(MonoAndroidAssetsPrefix)\**\*" Exclude="$(MonoAndroidAssetsPrefix)\**\.*\**" /> | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to above, but… Why support  Alternatively, perhaps we could require/force  <AndroidResource Include="$(MonoAndroidAssetsPrefix)**\*" />which would also prevent us from trying to traverse  There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. After discussion and thinking about  Spec if needed: https://github.com/dotnet/designs/blob/main/accepted/2020/workloads/workload-resolvers.md#workload-props-files | ||
| </ItemGroup> | ||
|  | ||
| <ItemGroup Condition=" '$(EnableDefaultAndroidItems)' == 'true' | ||
| and $([MSBuild]::VersionEquals($(TargetFrameworkVersion), '8.0')) "> | ||
| <!-- Default XPath transforms for bindings --> | ||
| <TransformFile Include="Transforms*.xml" /> | ||
| <TransformFile Include="Transforms\**\*.xml" /> | ||
|  | ||
Uh oh!
There was an error while loading. Please reload this page.