-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransactionReportingAPI.csproj
68 lines (61 loc) · 3.04 KB
/
TransactionReportingAPI.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="TransactioneerView\**" />
<Compile Remove="Transactioneer\**" />
<Compile Remove="TransactionProcessing.Client\**" />
<Compile Remove="TransactionProcessing.Server\**" />
<Compile Remove="TransactionProcessingService\**" />
<Content Remove="TransactioneerView\**" />
<Content Remove="Transactioneer\**" />
<Content Remove="TransactionProcessing.Client\**" />
<Content Remove="TransactionProcessing.Server\**" />
<Content Remove="TransactionProcessingService\**" />
<EmbeddedResource Remove="TransactioneerView\**" />
<EmbeddedResource Remove="Transactioneer\**" />
<EmbeddedResource Remove="TransactionProcessing.Client\**" />
<EmbeddedResource Remove="TransactionProcessing.Server\**" />
<EmbeddedResource Remove="TransactionProcessingService\**" />
<None Remove="TransactioneerView\**" />
<None Remove="Transactioneer\**" />
<None Remove="TransactionProcessing.Client\**" />
<None Remove="TransactionProcessing.Server\**" />
<None Remove="TransactionProcessingService\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Protos\SpoolPendingTransactions.proto" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="12.0.1" />
<PackageReference Include="Google.Protobuf" Version="3.23.4" />
<PackageReference Include="Grpc.AspNetCore" Version="2.55.0" />
<PackageReference Include="Grpc.Core.Api" Version="2.55.0" />
<PackageReference Include="Grpc.Net.Client" Version="2.55.0" />
<PackageReference Include="Grpc.Tools" Version="2.56.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.15" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.15" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.15" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.15">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Serilog" Version="3.0.1" />
<PackageReference Include="Serilog.AspNetCore" Version="7.0.0" />
<PackageReference Include="Serilog.Formatting.Compact" Version="1.1.0" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="TransactionProcessing.Server\TransactionProcessing.Server.csproj" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="Protos\SpoolPendingTransactions.proto" GrpcServices="Client" />
</ItemGroup>
</Project>