-
Notifications
You must be signed in to change notification settings - Fork 552
Debugging MSBuild Tasks #8730
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
Debugging MSBuild Tasks #8730
Changes from all commits
8eb6676
ce859e6
5ef39fb
6f180c0
88c3567
26e3ff9
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 |
---|---|---|
|
@@ -28,6 +28,7 @@ | |
<_MultiDexAarInAndroidSdk>extras\android\m2repository\com\android\support\multidex\1.0.1\multidex-1.0.1.aar</_MultiDexAarInAndroidSdk> | ||
<_SupportLicense Condition="Exists('$(_AndroidSdkLocation)\extras\android\m2repository\NOTICE.txt')">$(_AndroidSdkLocation)\extras\android\m2repository\NOTICE.txt</_SupportLicense> | ||
<_SupportLicense Condition="Exists('$(_AndroidSdkLocation)\extras\android\m2repository\m2repository\NOTICE.txt')">$(_AndroidSdkLocation)\extras\android\m2repository\m2repository\NOTICE.txt</_SupportLicense> | ||
<_ILRepackEnabled Condition=" '$(_ILRepackEnabled)' == '' ">true</_ILRepackEnabled> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None | ||
|
@@ -271,6 +272,7 @@ | |
</ItemGroup> | ||
|
||
<Target Name="ILRepacker" | ||
Condition=" '$(_ILRepackEnabled)' == 'true' " | ||
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. It looks like we only have 3 assemblies left? Can we remove these and not pack them? We could also consider 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. Moving from Newtonsoft might help. As the others I'm not sure. |
||
BeforeTargets="CopyFilesToOutputDirectory" | ||
Inputs="$(MSBuildAllProjects);@(IntermediateAssembly);@(InputAssemblies)" | ||
Outputs="$(IntermediateOutputPath)ILRepacker.stamp" > | ||
|
Uh oh!
There was an error while loading. Please reload this page.