Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/NuGet.BuildTasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Malinowski <jason.malinowski@microsoft.com>2015-12-22 03:27:02 +0300
committerJason Malinowski <jason.malinowski@microsoft.com>2016-01-13 03:23:54 +0300
commiteb36be2adb0568e7d0fdf2825d75e13da81847f1 (patch)
treea909e1cd3cba66750bb9daacd3e8b660b8d231d8
parent4305f8de551c947516d3283951d91a177d07fd23 (diff)
Fix some indenting of the file
-rw-r--r--src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.targets24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.targets b/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.targets
index ec05626..c90729f 100644
--- a/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.targets
+++ b/src/Microsoft.NuGet.Build.Tasks/Microsoft.NuGet.targets
@@ -66,12 +66,12 @@ Copyright (c) .NET Foundation. All rights reserved.
</_ProjectReferencingProjectJsonFile>
</ItemGroup>
- <MSBuild
- Projects="@(_MSBuildProjectReferenceExistent)"
- Targets="GetProjectsReferencingProjectJson"
- BuildInParallel="$(BuildInParallel)"
- Properties="%(_MSBuildProjectReferenceExistent.SetConfiguration); %(_MSBuildProjectReferenceExistent.SetPlatform)"
- RemoveProperties="%(_MSBuildProjectReferenceExistent.GlobalPropertiesToRemove)">
+ <MSBuild
+ Projects="@(_MSBuildProjectReferenceExistent)"
+ Targets="GetProjectsReferencingProjectJson"
+ BuildInParallel="$(BuildInParallel)"
+ Properties="%(_MSBuildProjectReferenceExistent.SetConfiguration); %(_MSBuildProjectReferenceExistent.SetPlatform)"
+ RemoveProperties="%(_MSBuildProjectReferenceExistent.GlobalPropertiesToRemove)">
<Output TaskParameter="TargetOutputs" ItemName="_ProjectReferencingProjectJsonFile" />
</MSBuild>
@@ -94,7 +94,7 @@ Copyright (c) .NET Foundation. All rights reserved.
<Value>$(MSBuildProjectFile)</Value>
</NuGetPreprocessorValue>
</ItemGroup>
-
+
<!--
============================================================
ResolveNuGetPackageAssets
@@ -139,14 +139,14 @@ Copyright (c) .NET Foundation. All rights reserved.
<ItemGroup>
<!-- Remove exact references, such as if a package had a framework reference to 'System' that we already have -->
<Reference Remove="@(_ReferencesFromNuGetPackages)" />
-
+
<!-- Remove simple name references if we're directly providing a reference assembly to the compiler. For example,
consider a project with an Reference Include="System", and some NuGet package is providing System.dll -->
- <Reference Remove="%(_ReferencesFromNuGetPackages.FileName)" />
+ <Reference Remove="%(_ReferencesFromNuGetPackages.FileName)" />
<!-- Remove simple name references that are already implicitly added -->
<_ReferencesFromNuGetPackages Remove="%(ReferencePath.FileName)" Condition="'%(ReferencePath.ResolvedFrom)' == 'ImplicitlyExpandTargetFramework'" />
-
+
<Reference Include="@(_ReferencesFromNuGetPackages)" />
</ItemGroup>
@@ -155,7 +155,7 @@ Copyright (c) .NET Foundation. All rights reserved.
Put DTAR in a mode where it will prefer the output of RAR and unify. -->
<DTARUseReferencesFromProject>true</DTARUseReferencesFromProject>
</PropertyGroup>
-
+
<!-- The items in _NuGetContentItems need to go into the appropriately-named item group, but the names depend upon the items
themselves. Split it apart. -->
<CreateItem Include="@(_NuGetContentItems)" Condition="'@(_NuGetContentItems)' != ''">
@@ -216,7 +216,7 @@ Copyright (c) .NET Foundation. All rights reserved.
<PropertyGroup>
<FrameworkInjectionLockFile Condition="'$(FrameworkInjectionLockFile)' == ''">@(_NuGetInjectionSourceDirectories->'%(Identity)\project.lock.json')</FrameworkInjectionLockFile>
- <FrameworkInjectionPackagesDirectory Condition="'$(FrameworkInjectionPackagesDirectory)' == ''">$([MSBuild]::GetRegistryValueFromView('HKEY_LOCAL_MACHINE\SOFTWARE\NuGet\Repository', 'NETCoreSDK', null, RegistryView.Registry32, RegistryView.Default))</FrameworkInjectionPackagesDirectory>
+ <FrameworkInjectionPackagesDirectory Condition="'$(FrameworkInjectionPackagesDirectory)' == ''">$([MSBuild]::GetRegistryValueFromView('HKEY_LOCAL_MACHINE\SOFTWARE\NuGet\Repository', 'NETCoreSDK', null, RegistryView.Registry32, RegistryView.Default))</FrameworkInjectionPackagesDirectory>
</PropertyGroup>
<ResolveNuGetPackageAssets Condition="Exists('$(FrameworkInjectionLockFile)')"