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

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

Issue 135720043: Issue 471: Support Windows 8.1 applications (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: Address Jeese's comments Created 9 years, 11 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
Index: Tools/Google.Apis.Release/Program.cs
===================================================================
--- a/Tools/Google.Apis.Release/Program.cs
b/Tools/Google.Apis.Release/Program.cs
@@ -241,6 241,7 @@
if (!HasIncomingChanges(new List<Hg> { DefaultRepository }))
{
// in case build fails the method will print its failures
// TODO(peleyal): Currently a WP project can't be build. NEED TO INVESTIGATE MORE.
if (BuildDefaultRepository())
{
CreateCoreNuGetPackages();
@@ -437,7 438,7 @@
Directory.CreateDirectory(binDir);
Directory.CreateDirectory(Path.Combine(binDir, "WP"));
- Directory.CreateDirectory(Path.Combine(binDir, "WinRT"));
Directory.CreateDirectory(Path.Combine(binDir, "Windows"));
foreach (var project in ReleaseProjects)
{
@@ -447,10 448,10 @@
{
outputDir = Path.Combine(outputDir, "WP");
}
- // Add Google.Apis.WinRT and Google.Apis.Auth.WinRT assemblies to a WinRT folder.
- else if (project.GetName().Contains("WinRT"))
// Add Google.Apis.Windows and Google.Apis.Auth.Windows assemblies to a Windows folder.
else if (project.GetName().Contains("Windows"))
{
- outputDir = Path.Combine(outputDir, "WinRT");
outputDir = Path.Combine(outputDir, "Windows");
}
var releasePath = Path.Combine(project.DirectoryPath, "Bin", "Release");
@@ -650,12 651,12 @@
DefaultRepository.Combine("Src", "GoogleApis.Auth", "GoogleApis.Auth.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.DotNet4", "GoogleApis.DotNet4.csproj"),
- DefaultRepository.Combine("Src", "GoogleApis.WinRT", "GoogleApis.WinRT.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.Windows", "GoogleApis.Windows.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.WP", "GoogleApis.WP.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.WinRT", "GoogleApis.Auth.WinRT.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.Auth.Windows", "GoogleApis.Auth.Windows.csproj"),
DefaultRepository.Combine("Src", "GoogleApis.Auth.WP", "GoogleApis.Auth.WP.csproj"),
};
return releaseProjects = (from path in releasePaths

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