We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df81b8b commit a28f697Copy full SHA for a28f697
1 file changed
modules/devguide/examples/dotnet/Cloud.cs …dules/devguide/examples/dotnet/Cloud.csxmodules/devguide/examples/dotnet/Cloud.cs renamed to modules/devguide/examples/dotnet/Cloud.csx
@@ -1,21 +1,24 @@
1
// Run this using dotnet-script: https://github.com/filipw/dotnet-script
2
//
3
-// dotnet script Cloud.cs
+// dotnet script Cloud.csx
4
5
6
-#r "nuget: CouchbaseNetClient, 3.3.0"
+#r "nuget: CouchbaseNetClient, 3.2.8-pre"
7
+// #r "nuget: System.Text.Json, 6.0.2"
8
+// #r "nuget: Microsoft.Extensions.Logging.Abstractions, 6.0.1"
9
+// #r "nuget: CouchbaseNetClient, 3.3.0"
10
11
using System;
12
// #tag::using[]
13
using System.Threading.Tasks;
14
using Couchbase;
15
// #end::using[]
16
-await new CollectionsExample().Main();
17
+await new CloudExample().Main();
18
-class StartUsing
19
+class CloudExample
20
{
- public async Task Main(string[] args)
21
+ public async Task Main()
22
23
24
// #tag::connect[]
0 commit comments