La Métamorphose

This commit is contained in:
Marc-Eric Martel
2023-11-03 15:48:17 -04:00
commit 842045ec4f
361 changed files with 11132 additions and 0 deletions

View File

@@ -0,0 +1,89 @@
using System;
using System.Threading;
using Confluent.Kafka;
class Program
{
static public List<IConsumer<Ignore, string>> buildConsumers(string[] arStr) {
List<IConsumer<Ignore, string>> arCon = new();
var config = new ConsumerConfig
{
BootstrapServers = "localhost:9092",
GroupId = "test-group",
AutoOffsetReset = AutoOffsetReset.Earliest
};
foreach (var str in arStr) {
var con = new ConsumerBuilder<Ignore, string>(config)
.SetErrorHandler((_, e) => Console.WriteLine($"Error: {e.Reason}"))
.SetPartitionsAssignedHandler((c, partitions) =>
{
Console.WriteLine($"Assigned partitions: {string.Join(", ", partitions)}");
// return (IEnumerable<TopicPartitionOffset>)partitions;
})
.SetPartitionsRevokedHandler((c, partitions) =>
{
Console.WriteLine($"Revoked partitions: {string.Join(", ", partitions)}");
}).Build();
con.Subscribe(str);
arCon.Add(con);
}
return arCon;
}
static void Main(string[] args)
{
var config = new ConsumerConfig
{
BootstrapServers = "localhost:9092",
GroupId = "test-group",
AutoOffsetReset = AutoOffsetReset.Earliest
};
var topics = new string[] { "test-topic" };
var cancellationTokenSource = new CancellationTokenSource();
var consumers = buildConsumers(topics);
Console.WriteLine($"Starting {consumers.Count} consumers...");
try
{
foreach (var consumer in consumers)
{
var thread = new Thread(() =>
{
try
{
while (!cancellationTokenSource.Token.IsCancellationRequested)
{
var message = consumer.Consume(cancellationTokenSource.Token);
Console.WriteLine($"Received message: {message.Value}, Partition: {message.Partition}, Offset: {message.Offset}");
}
}
catch (OperationCanceledException)
{
Console.WriteLine($"Consumer thread canceled.");
}
finally
{
consumer.Close();
}
});
thread.Start();
}
Console.WriteLine("Press any key to stop...");
Console.ReadKey();
cancellationTokenSource.Cancel();
foreach (var consumer in consumers)
{
consumer.Close();
}
}
catch (Exception ex)
{
Console.WriteLine($"Error: {ex.Message}");
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,189 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v7.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v7.0": {
"gregorsamsa/1.0.0": {
"dependencies": {
"Confluent.Kafka": "2.3.0"
},
"runtime": {
"gregorsamsa.dll": {}
}
},
"Confluent.Kafka/2.3.0": {
"dependencies": {
"System.Memory": "4.5.0",
"librdkafka.redist": "2.3.0"
},
"runtime": {
"lib/net6.0/Confluent.Kafka.dll": {
"assemblyVersion": "2.3.0.0",
"fileVersion": "2.3.0.0"
}
}
},
"librdkafka.redist/2.3.0": {
"runtimeTargets": {
"runtimes/linux-arm64/native/librdkafka.so": {
"rid": "linux-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/alpine-librdkafka.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/centos6-librdkafka.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/centos7-librdkafka.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/librdkafka.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/osx-arm64/native/librdkafka.dylib": {
"rid": "osx-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/osx-x64/native/librdkafka.dylib": {
"rid": "osx-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/libcrypto-3-x64.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/libcurl.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/librdkafka.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/librdkafkacpp.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/libssl-3-x64.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/msvcp140.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/vcruntime140.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/zlib1.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/zstd.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/libcrypto-3.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/libcurl.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/librdkafka.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/librdkafkacpp.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/libssl-3.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/msvcp140.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/vcruntime140.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/zlib1.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/zstd.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"System.Memory/4.5.0": {}
}
},
"libraries": {
"gregorsamsa/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Confluent.Kafka/2.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JSBXN/X7bBNS92bgZp82v1oT58kw9ndpKSGC5VgELeM/HgXUTssFkG3gEPEGd3cOIa5MMJSLe6+gYwzzjdAJPw==",
"path": "confluent.kafka/2.3.0",
"hashPath": "confluent.kafka.2.3.0.nupkg.sha512"
},
"librdkafka.redist/2.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pH5zFZ0S56Wl6UfRkmDJN2AjHlPdVxlTskncFnL27LLGQuuY2dAU8YrZBkduBOws4tURS2TaTp1aPsY3qeJ0bw==",
"path": "librdkafka.redist/2.3.0",
"hashPath": "librdkafka.redist.2.3.0.nupkg.sha512"
},
"System.Memory/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-m0psCSpUxTGfvwyO0i03ajXVhgBqyXlibXz0Mo1dtKGjaHrXFLnuQ8rNBTmWRqbfRjr4eC6Wah4X5FfuFDu5og==",
"path": "system.memory/4.5.0",
"hashPath": "system.memory.4.5.0.nupkg.sha512"
}
}
}

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net7.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "7.0.0"
}
}
}

View File

@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Confluent.Kafka" Version="2.3.0" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]

Binary file not shown.

View File

@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("gregorsamsa")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("gregorsamsa")]
[assembly: System.Reflection.AssemblyTitleAttribute("gregorsamsa")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
ef3e3820d41d6cd9814440f24b4af8a1135ee417

View File

@@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = gregorsamsa
build_property.ProjectDir = /scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1 @@
ae803ef1c48286dbe8e8ba58e1f13618e8c4a416

View File

@@ -0,0 +1,84 @@
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/obj/Debug/net7.0/gregorsamsa.csproj.AssemblyReference.cache
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/obj/Debug/net7.0/gregorsamsa.GeneratedMSBuildEditorConfig.editorconfig
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/obj/Debug/net7.0/gregorsamsa.AssemblyInfoInputs.cache
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/obj/Debug/net7.0/gregorsamsa.AssemblyInfo.cs
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/obj/Debug/net7.0/gregorsamsa.csproj.CoreCompileInputs.cache
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/gregorsamsa
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/gregorsamsa.deps.json
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/gregorsamsa.runtimeconfig.json
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/gregorsamsa.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/gregorsamsa.pdb
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/Confluent.Kafka.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/linux-arm64/native/librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/linux-x64/native/alpine-librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/linux-x64/native/centos6-librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/linux-x64/native/centos7-librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/linux-x64/native/librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/osx-arm64/native/librdkafka.dylib
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/osx-x64/native/librdkafka.dylib
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x64/native/libcrypto-3-x64.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x64/native/libcurl.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x64/native/librdkafka.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x64/native/librdkafkacpp.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x64/native/libssl-3-x64.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x64/native/vcruntime140.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x64/native/zlib1.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x64/native/zstd.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x86/native/libcrypto-3.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x86/native/libcurl.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x86/native/librdkafka.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x86/native/librdkafkacpp.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x86/native/libssl-3.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x86/native/vcruntime140.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x86/native/zlib1.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/bin/Debug/net7.0/runtimes/win-x86/native/zstd.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/obj/Debug/net7.0/gregorsamsa.csproj.CopyComplete
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/obj/Debug/net7.0/gregorsamsa.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/obj/Debug/net7.0/refint/gregorsamsa.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/obj/Debug/net7.0/gregorsamsa.pdb
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/obj/Debug/net7.0/gregorsamsa.genruntimeconfig.cache
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa/obj/Debug/net7.0/ref/gregorsamsa.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/gregorsamsa
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/gregorsamsa.deps.json
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/gregorsamsa.runtimeconfig.json
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/gregorsamsa.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/gregorsamsa.pdb
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/Confluent.Kafka.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/linux-arm64/native/librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/linux-x64/native/alpine-librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/linux-x64/native/centos6-librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/linux-x64/native/centos7-librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/linux-x64/native/librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/osx-arm64/native/librdkafka.dylib
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/osx-x64/native/librdkafka.dylib
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x64/native/libcrypto-3-x64.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x64/native/libcurl.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x64/native/librdkafka.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x64/native/librdkafkacpp.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x64/native/libssl-3-x64.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x64/native/vcruntime140.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x64/native/zlib1.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x64/native/zstd.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x86/native/libcrypto-3.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x86/native/libcurl.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x86/native/librdkafka.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x86/native/librdkafkacpp.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x86/native/libssl-3.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x86/native/vcruntime140.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x86/native/zlib1.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/bin/Debug/net7.0/runtimes/win-x86/native/zstd.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/Debug/net7.0/gregorsamsa.csproj.AssemblyReference.cache
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/Debug/net7.0/gregorsamsa.GeneratedMSBuildEditorConfig.editorconfig
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/Debug/net7.0/gregorsamsa.AssemblyInfoInputs.cache
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/Debug/net7.0/gregorsamsa.AssemblyInfo.cs
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/Debug/net7.0/gregorsamsa.csproj.CoreCompileInputs.cache
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/Debug/net7.0/gregorsamsa.csproj.CopyComplete
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/Debug/net7.0/gregorsamsa.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/Debug/net7.0/refint/gregorsamsa.dll
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/Debug/net7.0/gregorsamsa.pdb
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/Debug/net7.0/gregorsamsa.genruntimeconfig.cache
/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/Debug/net7.0/ref/gregorsamsa.dll

View File

@@ -0,0 +1 @@
c09921fd9e866869172c0a191156448888bf8e42

View File

@@ -0,0 +1,67 @@
{
"format": 1,
"restore": {
"/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/gregorsamsa.csproj": {}
},
"projects": {
"/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/gregorsamsa.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/gregorsamsa.csproj",
"projectName": "gregorsamsa",
"projectPath": "/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/gregorsamsa.csproj",
"packagesPath": "/home/memartel/.nuget/packages/",
"outputPath": "/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/memartel/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"dependencies": {
"Confluent.Kafka": {
"target": "Package",
"version": "[2.3.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/opt/dotnet-sdk-bin-7.0/sdk/7.0.401/RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/memartel/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/memartel/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/memartel/.nuget/packages/" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,316 @@
{
"version": 3,
"targets": {
"net7.0": {
"Confluent.Kafka/2.3.0": {
"type": "package",
"dependencies": {
"System.Memory": "4.5.0",
"librdkafka.redist": "2.3.0"
},
"compile": {
"lib/net6.0/Confluent.Kafka.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net6.0/Confluent.Kafka.dll": {
"related": ".xml"
}
}
},
"librdkafka.redist/2.3.0": {
"type": "package",
"build": {
"build/_._": {}
},
"runtimeTargets": {
"runtimes/linux-arm64/native/librdkafka.so": {
"assetType": "native",
"rid": "linux-arm64"
},
"runtimes/linux-x64/native/alpine-librdkafka.so": {
"assetType": "native",
"rid": "linux-x64"
},
"runtimes/linux-x64/native/centos6-librdkafka.so": {
"assetType": "native",
"rid": "linux-x64"
},
"runtimes/linux-x64/native/centos7-librdkafka.so": {
"assetType": "native",
"rid": "linux-x64"
},
"runtimes/linux-x64/native/librdkafka.so": {
"assetType": "native",
"rid": "linux-x64"
},
"runtimes/osx-arm64/native/librdkafka.dylib": {
"assetType": "native",
"rid": "osx-arm64"
},
"runtimes/osx-x64/native/librdkafka.dylib": {
"assetType": "native",
"rid": "osx-x64"
},
"runtimes/win-x64/native/libcrypto-3-x64.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x64/native/libcurl.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x64/native/librdkafka.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x64/native/librdkafkacpp.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x64/native/libssl-3-x64.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x64/native/msvcp140.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x64/native/vcruntime140.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x64/native/zlib1.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x64/native/zstd.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x86/native/libcrypto-3.dll": {
"assetType": "native",
"rid": "win-x86"
},
"runtimes/win-x86/native/libcurl.dll": {
"assetType": "native",
"rid": "win-x86"
},
"runtimes/win-x86/native/librdkafka.dll": {
"assetType": "native",
"rid": "win-x86"
},
"runtimes/win-x86/native/librdkafkacpp.dll": {
"assetType": "native",
"rid": "win-x86"
},
"runtimes/win-x86/native/libssl-3.dll": {
"assetType": "native",
"rid": "win-x86"
},
"runtimes/win-x86/native/msvcp140.dll": {
"assetType": "native",
"rid": "win-x86"
},
"runtimes/win-x86/native/vcruntime140.dll": {
"assetType": "native",
"rid": "win-x86"
},
"runtimes/win-x86/native/zlib1.dll": {
"assetType": "native",
"rid": "win-x86"
},
"runtimes/win-x86/native/zstd.dll": {
"assetType": "native",
"rid": "win-x86"
}
}
},
"System.Memory/4.5.0": {
"type": "package",
"compile": {
"ref/netcoreapp2.1/_._": {}
},
"runtime": {
"lib/netcoreapp2.1/_._": {}
}
}
}
},
"libraries": {
"Confluent.Kafka/2.3.0": {
"sha512": "JSBXN/X7bBNS92bgZp82v1oT58kw9ndpKSGC5VgELeM/HgXUTssFkG3gEPEGd3cOIa5MMJSLe6+gYwzzjdAJPw==",
"type": "package",
"path": "confluent.kafka/2.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"confluent.kafka.2.3.0.nupkg.sha512",
"confluent.kafka.nuspec",
"lib/net462/Confluent.Kafka.dll",
"lib/net462/Confluent.Kafka.xml",
"lib/net6.0/Confluent.Kafka.dll",
"lib/net6.0/Confluent.Kafka.xml",
"lib/netstandard1.3/Confluent.Kafka.dll",
"lib/netstandard1.3/Confluent.Kafka.xml",
"lib/netstandard2.0/Confluent.Kafka.dll",
"lib/netstandard2.0/Confluent.Kafka.xml"
]
},
"librdkafka.redist/2.3.0": {
"sha512": "pH5zFZ0S56Wl6UfRkmDJN2AjHlPdVxlTskncFnL27LLGQuuY2dAU8YrZBkduBOws4tURS2TaTp1aPsY3qeJ0bw==",
"type": "package",
"path": "librdkafka.redist/2.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"CONFIGURATION.md",
"LICENSES.txt",
"README.md",
"build/librdkafka.redist.props",
"build/native/include/librdkafka/rdkafka.h",
"build/native/include/librdkafka/rdkafka_mock.h",
"build/native/include/librdkafka/rdkafkacpp.h",
"build/native/lib/win/x64/win-x64-Release/v142/librdkafka.lib",
"build/native/lib/win/x64/win-x64-Release/v142/librdkafkacpp.lib",
"build/native/lib/win/x86/win-x86-Release/v142/librdkafka.lib",
"build/native/lib/win/x86/win-x86-Release/v142/librdkafkacpp.lib",
"build/native/librdkafka.redist.targets",
"librdkafka.redist.2.3.0.nupkg.sha512",
"librdkafka.redist.nuspec",
"runtimes/linux-arm64/native/librdkafka.so",
"runtimes/linux-x64/native/alpine-librdkafka.so",
"runtimes/linux-x64/native/centos6-librdkafka.so",
"runtimes/linux-x64/native/centos7-librdkafka.so",
"runtimes/linux-x64/native/librdkafka.so",
"runtimes/osx-arm64/native/librdkafka.dylib",
"runtimes/osx-x64/native/librdkafka.dylib",
"runtimes/win-x64/native/libcrypto-3-x64.dll",
"runtimes/win-x64/native/libcurl.dll",
"runtimes/win-x64/native/librdkafka.dll",
"runtimes/win-x64/native/librdkafkacpp.dll",
"runtimes/win-x64/native/libssl-3-x64.dll",
"runtimes/win-x64/native/msvcp140.dll",
"runtimes/win-x64/native/vcruntime140.dll",
"runtimes/win-x64/native/zlib1.dll",
"runtimes/win-x64/native/zstd.dll",
"runtimes/win-x86/native/libcrypto-3.dll",
"runtimes/win-x86/native/libcurl.dll",
"runtimes/win-x86/native/librdkafka.dll",
"runtimes/win-x86/native/librdkafkacpp.dll",
"runtimes/win-x86/native/libssl-3.dll",
"runtimes/win-x86/native/msvcp140.dll",
"runtimes/win-x86/native/vcruntime140.dll",
"runtimes/win-x86/native/zlib1.dll",
"runtimes/win-x86/native/zstd.dll"
]
},
"System.Memory/4.5.0": {
"sha512": "m0psCSpUxTGfvwyO0i03ajXVhgBqyXlibXz0Mo1dtKGjaHrXFLnuQ8rNBTmWRqbfRjr4eC6Wah4X5FfuFDu5og==",
"type": "package",
"path": "system.memory/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/netcoreapp2.1/_._",
"lib/netstandard1.1/System.Memory.dll",
"lib/netstandard1.1/System.Memory.xml",
"lib/netstandard2.0/System.Memory.dll",
"lib/netstandard2.0/System.Memory.xml",
"lib/uap10.0.16300/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/netcoreapp2.1/_._",
"ref/netstandard1.1/System.Memory.dll",
"ref/netstandard1.1/System.Memory.xml",
"ref/netstandard2.0/System.Memory.dll",
"ref/netstandard2.0/System.Memory.xml",
"ref/uap10.0.16300/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.memory.4.5.0.nupkg.sha512",
"system.memory.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
}
},
"projectFileDependencyGroups": {
"net7.0": [
"Confluent.Kafka >= 2.3.0"
]
},
"packageFolders": {
"/home/memartel/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/gregorsamsa.csproj",
"projectName": "gregorsamsa",
"projectPath": "/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/gregorsamsa.csproj",
"packagesPath": "/home/memartel/.nuget/packages/",
"outputPath": "/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/memartel/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"dependencies": {
"Confluent.Kafka": {
"target": "Package",
"version": "[2.3.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/opt/dotnet-sdk-bin-7.0/sdk/7.0.401/RuntimeIdentifierGraph.json"
}
}
}
}

View File

@@ -0,0 +1,12 @@
{
"version": 2,
"dgSpecHash": "pyLdCwzQ+68DYzRVXElbdtUJMBKh05rDrrcLfnczref/qLGRmiwGb53x6cU2mEncV9TIRRruJ3rC+SIlQlp11w==",
"success": true,
"projectFilePath": "/scratch/kafka_2.13-3.6.0/dotnet/gregorsamsa_consumer/gregorsamsa.csproj",
"expectedPackageFiles": [
"/home/memartel/.nuget/packages/confluent.kafka/2.3.0/confluent.kafka.2.3.0.nupkg.sha512",
"/home/memartel/.nuget/packages/librdkafka.redist/2.3.0/librdkafka.redist.2.3.0.nupkg.sha512",
"/home/memartel/.nuget/packages/system.memory/4.5.0/system.memory.4.5.0.nupkg.sha512"
],
"logs": []
}

View File

@@ -0,0 +1,21 @@
using System;
using Confluent.Kafka;
class Program
{
static void Main(string[] args)
{
var config = new ProducerConfig
{
BootstrapServers = "localhost:9092"
};
using var producer = new ProducerBuilder<Null, string>(config).Build();
var topic = "test-topic";
var message = new Message<Null, string> { Value = "Hello, Kafka!" };
producer.Produce(topic, message, deliveryReport => {
Console.WriteLine(deliveryReport.Message.Value);
});
producer.Flush(new TimeSpan(0,0,30));
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,189 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v7.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v7.0": {
"josefk/1.0.0": {
"dependencies": {
"Confluent.Kafka": "2.3.0"
},
"runtime": {
"josefk.dll": {}
}
},
"Confluent.Kafka/2.3.0": {
"dependencies": {
"System.Memory": "4.5.0",
"librdkafka.redist": "2.3.0"
},
"runtime": {
"lib/net6.0/Confluent.Kafka.dll": {
"assemblyVersion": "2.3.0.0",
"fileVersion": "2.3.0.0"
}
}
},
"librdkafka.redist/2.3.0": {
"runtimeTargets": {
"runtimes/linux-arm64/native/librdkafka.so": {
"rid": "linux-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/alpine-librdkafka.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/centos6-librdkafka.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/centos7-librdkafka.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/librdkafka.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/osx-arm64/native/librdkafka.dylib": {
"rid": "osx-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/osx-x64/native/librdkafka.dylib": {
"rid": "osx-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/libcrypto-3-x64.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/libcurl.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/librdkafka.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/librdkafkacpp.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/libssl-3-x64.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/msvcp140.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/vcruntime140.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/zlib1.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/zstd.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/libcrypto-3.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/libcurl.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/librdkafka.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/librdkafkacpp.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/libssl-3.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/msvcp140.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/vcruntime140.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/zlib1.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/zstd.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"System.Memory/4.5.0": {}
}
},
"libraries": {
"josefk/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Confluent.Kafka/2.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JSBXN/X7bBNS92bgZp82v1oT58kw9ndpKSGC5VgELeM/HgXUTssFkG3gEPEGd3cOIa5MMJSLe6+gYwzzjdAJPw==",
"path": "confluent.kafka/2.3.0",
"hashPath": "confluent.kafka.2.3.0.nupkg.sha512"
},
"librdkafka.redist/2.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pH5zFZ0S56Wl6UfRkmDJN2AjHlPdVxlTskncFnL27LLGQuuY2dAU8YrZBkduBOws4tURS2TaTp1aPsY3qeJ0bw==",
"path": "librdkafka.redist/2.3.0",
"hashPath": "librdkafka.redist.2.3.0.nupkg.sha512"
},
"System.Memory/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-m0psCSpUxTGfvwyO0i03ajXVhgBqyXlibXz0Mo1dtKGjaHrXFLnuQ8rNBTmWRqbfRjr4eC6Wah4X5FfuFDu5og==",
"path": "system.memory/4.5.0",
"hashPath": "system.memory.4.5.0.nupkg.sha512"
}
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net7.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "7.0.0"
}
}
}

View File

@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Confluent.Kafka" Version="2.3.0" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]

Binary file not shown.

View File

@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("josefk")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("josefk")]
[assembly: System.Reflection.AssemblyTitleAttribute("josefk")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
2fea50b85150297f445405e09991a376890eb7c0

View File

@@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = josefk
build_property.ProjectDir = /scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1 @@
05e0be4c2d12ae0f17c5d6f12962bce0cc2e9e72

View File

@@ -0,0 +1,84 @@
/scratch/kafka_2.13-3.6.0/dotnet/josefk/obj/Debug/net7.0/josefk.GeneratedMSBuildEditorConfig.editorconfig
/scratch/kafka_2.13-3.6.0/dotnet/josefk/obj/Debug/net7.0/josefk.AssemblyInfoInputs.cache
/scratch/kafka_2.13-3.6.0/dotnet/josefk/obj/Debug/net7.0/josefk.AssemblyInfo.cs
/scratch/kafka_2.13-3.6.0/dotnet/josefk/obj/Debug/net7.0/josefk.csproj.CoreCompileInputs.cache
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/josefk
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/josefk.deps.json
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/josefk.runtimeconfig.json
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/josefk.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/josefk.pdb
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/Confluent.Kafka.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/linux-arm64/native/librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/linux-x64/native/alpine-librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/linux-x64/native/centos6-librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/linux-x64/native/centos7-librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/linux-x64/native/librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/osx-arm64/native/librdkafka.dylib
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/osx-x64/native/librdkafka.dylib
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x64/native/libcrypto-3-x64.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x64/native/libcurl.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x64/native/librdkafka.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x64/native/librdkafkacpp.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x64/native/libssl-3-x64.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x64/native/vcruntime140.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x64/native/zlib1.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x64/native/zstd.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x86/native/libcrypto-3.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x86/native/libcurl.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x86/native/librdkafka.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x86/native/librdkafkacpp.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x86/native/libssl-3.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x86/native/vcruntime140.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x86/native/zlib1.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/bin/Debug/net7.0/runtimes/win-x86/native/zstd.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/obj/Debug/net7.0/josefk.csproj.AssemblyReference.cache
/scratch/kafka_2.13-3.6.0/dotnet/josefk/obj/Debug/net7.0/josefk.csproj.CopyComplete
/scratch/kafka_2.13-3.6.0/dotnet/josefk/obj/Debug/net7.0/josefk.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/obj/Debug/net7.0/refint/josefk.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk/obj/Debug/net7.0/josefk.pdb
/scratch/kafka_2.13-3.6.0/dotnet/josefk/obj/Debug/net7.0/josefk.genruntimeconfig.cache
/scratch/kafka_2.13-3.6.0/dotnet/josefk/obj/Debug/net7.0/ref/josefk.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/josefk
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/josefk.deps.json
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/josefk.runtimeconfig.json
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/josefk.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/josefk.pdb
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/Confluent.Kafka.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/linux-arm64/native/librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/linux-x64/native/alpine-librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/linux-x64/native/centos6-librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/linux-x64/native/centos7-librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/linux-x64/native/librdkafka.so
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/osx-arm64/native/librdkafka.dylib
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/osx-x64/native/librdkafka.dylib
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x64/native/libcrypto-3-x64.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x64/native/libcurl.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x64/native/librdkafka.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x64/native/librdkafkacpp.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x64/native/libssl-3-x64.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x64/native/vcruntime140.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x64/native/zlib1.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x64/native/zstd.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x86/native/libcrypto-3.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x86/native/libcurl.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x86/native/librdkafka.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x86/native/librdkafkacpp.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x86/native/libssl-3.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x86/native/vcruntime140.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x86/native/zlib1.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/bin/Debug/net7.0/runtimes/win-x86/native/zstd.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/obj/Debug/net7.0/josefk.csproj.AssemblyReference.cache
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/obj/Debug/net7.0/josefk.GeneratedMSBuildEditorConfig.editorconfig
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/obj/Debug/net7.0/josefk.AssemblyInfoInputs.cache
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/obj/Debug/net7.0/josefk.AssemblyInfo.cs
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/obj/Debug/net7.0/josefk.csproj.CoreCompileInputs.cache
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/obj/Debug/net7.0/josefk.csproj.CopyComplete
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/obj/Debug/net7.0/josefk.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/obj/Debug/net7.0/refint/josefk.dll
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/obj/Debug/net7.0/josefk.pdb
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/obj/Debug/net7.0/josefk.genruntimeconfig.cache
/scratch/kafka_2.13-3.6.0/dotnet/josefk_producer/obj/Debug/net7.0/ref/josefk.dll

Binary file not shown.

View File

@@ -0,0 +1 @@
0f98059d61801c6f6e9dce3a34d39d499ea9eb61

Some files were not shown because too many files have changed in this diff Show More