Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 7 additions & 10 deletions 1.0.0-beta01/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,12 @@ <h1>google-cloud</h1>
<div class="col col-right">
<!-- TODO: Use nuget buttons as per https://github.com/prabirshrestha/nuget-button ? -->
<h2>Add NuGet pre-release packages to your project:</h2>
<pre>
Google.Bigquery.V2
<pre>Google.Bigquery.V2
Google.Datastore.V1Beta3
Google.Logging.Log4Net
Google.Logging.V2
Google.Pubsub.V1
Google.Storage.V1
</pre>
Google.Storage.V1</pre>
</div><!-- end of .col.col-right -->
</div><!-- end of .container -->
</section><!-- end of .hero-banner -->
Expand Down Expand Up @@ -133,10 +131,11 @@ <h3 class="block-title">What are they?</h3>

<div class="quote-box--supplementary">
<h4>Example: Retrieving Datastore Entities</h4>
<div hljs="" language="csharp" class=""><pre>
<code class="hljs csharp">
using Google.Datastore.V1Beta3;
<div hljs="" language="csharp" class="">
<pre><code class="hljs csharp">using Google.Datastore.V1Beta3;

...

DatastoreDb db = DatastoreDb.Create("PROJECT_ID");
Query query = new Query("Book")
{
Expand All @@ -148,9 +147,7 @@ <h4>Example: Retrieving Datastore Entities</h4>
DateTime published = (DateTime) entity["published"];
Console.WriteLine("{0} was published in {1}",
title, published);
}
</code>
</pre>
}</code></pre>
</div>
</div>
</div><!-- end of .container -->
Expand Down