Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Changes made to keep in sync with coding convention across project.
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit Apple committed Oct 10, 2012
1 parent 70939ba commit c858aff
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Kudu.Core/Deployment/MsBuildSiteBuilder.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Globalization;
using System.Linq;
using System.Threading.Tasks;
using Kudu.Contracts.Tracing;
Expand Down Expand Up @@ -31,7 +30,7 @@ public MsBuildSiteBuilder(IBuildPropertyProvider propertyProvider, string workin

protected string GetPropertyString()
{
return String.Join(";", _propertyProvider.GetProperties().Select(p => string.Format(CultureInfo.CurrentCulture, "{0}=\"{1}\"", p.Key, p.Value)));
return String.Join(";", _propertyProvider.GetProperties().Select(p => String.Format("{0}=\"{1}\"", p.Key, p.Value)));
}

public string ExecuteMSBuild(ITracer tracer, string arguments, params object[] args)
Expand Down

0 comments on commit c858aff

Please sign in to comment.