Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
obj/
bin/
.vs/
4 changes: 4 additions & 0 deletions DemoApp/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ dotnet_sort_system_directives_first = true
dotnet_separate_import_directive_groups = true
csharp_preferred_using_directive_placement = outside_namespace
indent_size = 2
dotnet_diagnostic.CS8600.severity = none
dotnet_diagnostic.CS8602.severity = none
dotnet_diagnostic.CS8618.severity = none
dotnet_diagnostic.CS8625.severity = none

[*.csproj]
indent_size = 2
Expand Down
727 changes: 1 addition & 726 deletions DemoApp/Files/packages.lock.json

Large diffs are not rendered by default.

727 changes: 1 addition & 726 deletions DemoApp/GenerateContentSimpleText/packages.lock.json

Large diffs are not rendered by default.

727 changes: 1 addition & 726 deletions DemoApp/GenerateContentStreamSimpleText/packages.lock.json

Large diffs are not rendered by default.

727 changes: 1 addition & 726 deletions DemoApp/JsonParser/packages.lock.json

Large diffs are not rendered by default.

727 changes: 1 addition & 726 deletions DemoApp/LiveAudioToAudioRealtimeInput/packages.lock.json

Large diffs are not rendered by default.

727 changes: 1 addition & 726 deletions DemoApp/LiveTextToTextClientContent/packages.lock.json

Large diffs are not rendered by default.

727 changes: 1 addition & 726 deletions DemoApp/LiveToolCall/packages.lock.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
<PackageVersion Include="MSTest.TestAdapter" Version="3.4.3" />
<PackageVersion Include="Moq" Version="4.20.70" />
<PackageVersion Include="Microsoft.Testing.Extensions.CodeCoverage" Version="17.10.1" />
<PackageVersion Include="System.Net.WebSockets.Client" Version="4.3.2" />
<PackageVersion Include="System.Text.Json" Version="10.0.0" />
<PackageVersion Include="System.Collections.Immutable" Version="8.0.0" />
<PackageVersion Include="Google.Apis.Auth" Version="1.69.0" />
Expand Down
6 changes: 6 additions & 0 deletions Google.GenAI.E2E.Tests/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ dotnet_sort_system_directives_first = true
dotnet_separate_import_directive_groups = true
csharp_preferred_using_directive_placement = outside_namespace
indent_size = 2
dotnet_diagnostic.CS8600.severity = none
dotnet_diagnostic.CS8602.severity = none
dotnet_diagnostic.CS8604.severity = none
dotnet_diagnostic.CS8618.severity = none
dotnet_diagnostic.CS8625.severity = none
dotnet_diagnostic.IDE0009.severity = none

[*.csproj]
indent_size = 2
Expand Down
727 changes: 1 addition & 726 deletions Google.GenAI.E2E.Tests/packages.lock.json

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions Google.GenAI.Tests/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ dotnet_sort_system_directives_first = true
dotnet_separate_import_directive_groups = true
csharp_preferred_using_directive_placement = outside_namespace
indent_size = 2
dotnet_diagnostic.CS8600.severity = none
dotnet_diagnostic.CS8602.severity = none
dotnet_diagnostic.CS8604.severity = none
dotnet_diagnostic.CS8618.severity = none
dotnet_diagnostic.CS8625.severity = none
dotnet_diagnostic.IDE0009.severity = none

[*.csproj]
indent_size = 2
Expand Down
2 changes: 1 addition & 1 deletion Google.GenAI.Tests/AsyncSessionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ internal override Task<ApiResponse> RequestAsync(HttpMethod httpMethod, string p

public override IAsyncEnumerable<ApiResponse> RequestStreamAsync(
HttpMethod httpMethod, string path, string requestJson, HttpOptions? requestHttpOptions,
[EnumeratorCancellation] CancellationToken cancellationToken = default) {
CancellationToken cancellationToken = default) {
return GetDummyAsyncEnumerable(cancellationToken);
}

Expand Down
Loading
Loading