summaryrefslogtreecommitdiff
path: root/src/accounting/Accounting.csproj
diff options
context:
space:
mode:
authorSaumit <justsaumit@protonmail.com>2025-09-27 02:14:26 +0530
committerSaumit <justsaumit@protonmail.com>2025-09-27 02:14:26 +0530
commit82e03978b89938219958032efb1448cc76baa181 (patch)
tree626f3e54d52ecd49be0ed3bee30abacc0453d081 /src/accounting/Accounting.csproj
Initial snapshot - OpenTelemetry demo 2.1.3 -f
Diffstat (limited to 'src/accounting/Accounting.csproj')
-rw-r--r--src/accounting/Accounting.csproj34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/accounting/Accounting.csproj b/src/accounting/Accounting.csproj
new file mode 100644
index 0000000..65a2bcc
--- /dev/null
+++ b/src/accounting/Accounting.csproj
@@ -0,0 +1,34 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>net8.0</TargetFramework>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
+ <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Confluent.Kafka" Version="2.11.0" />
+ <PackageReference Include="EFCore.NamingConventions" Version="9.0.0" />
+ <PackageReference Include="Google.Protobuf" Version="3.31.1" />
+ <PackageReference Include="Grpc.Tools" Version="2.68.1">
+ <PrivateAssets>all</PrivateAssets>
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ </PackageReference>
+ <PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.7" />
+ <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.22.1" />
+ <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
+ <PackageReference Include="OpenTelemetry.AutoInstrumentation" Version="1.12.0" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <!-- GrpcServices is 'none' so that we do not need to depend on the grpc nuget package, and we only need protobuf support. -->
+ <Protobuf Include="src\protos\demo.proto" GrpcServices="none" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <Folder Include="src\protos\" />
+ </ItemGroup>
+
+</Project>