Skip to content

Commit a28f697

Browse files
committed
rename Cloud.csx 3.3-release-prep
1 parent df81b8b commit a28f697

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

modules/devguide/examples/dotnet/Cloud.cs renamed to modules/devguide/examples/dotnet/Cloud.csx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
// Run this using dotnet-script: https://github.com/filipw/dotnet-script
22
//
3-
// dotnet script Cloud.cs
3+
// dotnet script Cloud.csx
44
//
55

6-
#r "nuget: CouchbaseNetClient, 3.3.0"
6+
#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"
710

811
using System;
912
// #tag::using[]
1013
using System.Threading.Tasks;
1114
using Couchbase;
1215
// #end::using[]
1316

14-
await new CollectionsExample().Main();
17+
await new CloudExample().Main();
1518

16-
class StartUsing
19+
class CloudExample
1720
{
18-
public async Task Main(string[] args)
21+
public async Task Main()
1922
{
2023

2124
// #tag::connect[]

0 commit comments

Comments
 (0)