Skip to content

[Xamarin.Android.Build.Tasks] IDE0006 warning on File -> New CrossPlatform App #730

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 1 commit into from
Aug 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Copyright (C) 2014 Xamarin. All rights reserved.
<Output TaskParameter="TargetOutputs" ItemName="_NativeAndroidRecipeFiles"/>
</MSBuild>

<MergeApkRecipelists RecipeFiles="@(_NativeAndroidRecipeFiles)" Condition="'@(_NativeAndroidRecipeFiles)' != ''">
<MergeApkRecipelists RecipeFiles="%(_NativeAndroidRecipeFiles.Identity)" Condition="'@(_NativeAndroidRecipeFiles)' != '' And Exists('%(_NativeAndroidRecipeFiles.Identity)')">
<Output TaskParameter="SOLibPaths" ItemName="NativeLibraryPaths" />
<Output TaskParameter="AndroidArchitecture" PropertyName="NativeLibraryAbi" />
<Output TaskParameter="HasMismatchedConfigurations" PropertyName="NativeHasMismatchedConfigurations" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ Copyright (C) 2012 Xamarin Inc. All rights reserved.
Inputs="$(MSBuildProjectFullPath);$(_AndroidBuildPropertiesCache)"
Outputs="$(_AndroidLibraryProjectImportsCache)">
<ResolveLibraryProjectImports
ContinueOnError="$(DesignTimeBuild)"
CacheFile="$(_AndroidLibraryProjectImportsCache)"
Assemblies="@(ReferencePath);@(ReferenceDependencyPaths)"
ImportsDirectory="$(_LibraryProjectImportsDirectoryName)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1072,6 +1072,7 @@ because xbuild doesn't support framework reference assemblies.
Inputs="$(MSBuildProjectFullPath);@(ReferencePath);@(ReferenceDependencyPaths);$(_AndroidBuildPropertiesCache)"
Outputs="$(_AndroidLibraryProjectImportsCache)">
<ResolveLibraryProjectImports
ContinueOnError="$(DesignTimeBuild)"
CacheFile="$(_AndroidLibraryProjectImportsCache)"
Assemblies="@(ReferencePath);@(ReferenceDependencyPaths)"
ImportsDirectory="$(_LibraryProjectImportsDirectoryName)"
Expand Down Expand Up @@ -1324,6 +1325,7 @@ because xbuild doesn't support framework reference assemblies.

<!-- Parse primary R.java and create Resources.Designer.cs -->
<GenerateResourceDesigner
ContinueOnError="$(DesignTimeBuild)"
NetResgenOutputFile="$(ResgenTemporaryDirectory)\$(AndroidResgenFilename)"
JavaResgenInputFile="$(_GeneratedPrimaryJavaResgenFile)"
Namespace="$(AndroidResgenNamespace)"
Expand Down