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

Unified Diff: Tools/Google.Apis.NuGet.Publisher/Google.Apis.NuGet.Publisher/Discovery/DiscoveryItem.cs

Issue 12662047: Issue 376: Generate NuGet pacakges for generated APIs (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: David final comments Created 10 years, 7 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.NuGet.Publisher/Google.Apis.NuGet.Publisher/Discovery/DiscoveryItem.cs
===================================================================
new file mode 100644
--- /dev/null
+++ b/Tools/Google.Apis.NuGet.Publisher/Google.Apis.NuGet.Publisher/Discovery/DiscoveryItem.cs
@@ -0,0 +1,35 @@
+/*
+Copyright 2013 Google Inc
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+namespace Google.Apis.NuGet.Publisher.Discovery
+{
+ /// <summary>A single API representation that contains name and version</summary>
+ public class DiscoveryItem
+ {
+ /// <summary>Gets or sets the name of the Item.</summary>
+ [Newtonsoft.Json.JsonPropertyAttribute("name")]
+ public string Name { get; set; }
+
+ /// <summary>Gets or sets the version of the Item.</summary>
+ [Newtonsoft.Json.JsonPropertyAttribute("version")]
+ public string Version { get; set; }
+
+ public override string ToString()
+ {
+ return Name + "." + Version;
+ }
+ }
+}

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