Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(378)

Unified Diff: Tools/Google.Apis.Release/Program.cs

Issue 176220043: Issue 471: Support WP8.1 (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: minor Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Src/GoogleApis/packages.config ('k') | Tools/Google.Apis.Release/Resources/Google.Apis.Auth.VERSION.nuspec » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Google.Apis.Release/Program.cs
===================================================================
--- a/Tools/Google.Apis.Release/Program.cs
b/Tools/Google.Apis.Release/Program.cs
@@ -438,13 438,19 @@
Directory.CreateDirectory(binDir);
Directory.CreateDirectory(Path.Combine(binDir, "WP"));
Directory.CreateDirectory(Path.Combine(binDir, "WP81"));
Directory.CreateDirectory(Path.Combine(binDir, "Windows"));
foreach (var project in ReleaseProjects)
{
var outputDir = binDir;
// Add Google.Apis.WP81 and Google.Apis.Auth.WP81 assemblies to a WP81 folder.
if (project.GetName().Contains("WP81"))
{
outputDir = Path.Combine(outputDir, "WP81");
}
// Add Google.Apis.WP and Google.Apis.Auth.WP assemblies to a WP folder.
- if (project.GetName().Contains("WP"))
else if (project.GetName().Contains("WP"))
{
outputDir = Path.Combine(outputDir, "WP");
}
@@ -653,11 659,14 @@
DefaultRepository.Combine("Src", "GoogleApis.DotNet4", "GoogleApis.DotNet4.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.Windows", "GoogleApis.Windows.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.WP", "GoogleApis.WP.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.WP81", "GoogleApis.WP81.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.Auth.DotNet4", "GoogleApis.Auth.DotNet4.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.Auth.Mvc4", "GoogleApis.Auth.Mvc4.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.Auth.Windows", "GoogleApis.Auth.Windows.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.Auth.WP", "GoogleApis.Auth.WP.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.Auth.WP81", "GoogleApis.Auth.WP81.csproj"),
};
return releaseProjects = (from path in releasePaths
select new Project(path)).ToList();
« no previous file with comments | « Src/GoogleApis/packages.config ('k') | Tools/Google.Apis.Release/Resources/Google.Apis.Auth.VERSION.nuspec » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b