Skip to content

Commit 85e3e4d

Browse files
committed
Create Test Schema
1 parent c630a04 commit 85e3e4d

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
syntax = "proto3";
2+
3+
option csharp_namespace = "TIKSN.Tests.Licensing";
4+
5+
message TestLicenseEntitlements {
6+
string Name = 1;
7+
int32 Quantity = 2;
8+
bytes Salt = 3;
9+
int64 CompanyId = 4;
10+
int64 EmployeeId = 5;
11+
}

TIKSN.Framework.Core.Tests/TIKSN.Framework.Core.Tests.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
</PropertyGroup>
1212
<ItemGroup>
1313
<PackageReference Include="Bond.CSharp" />
14+
<PackageReference Include="Grpc.Tools">
15+
<PrivateAssets>all</PrivateAssets>
16+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
17+
</PackageReference>
1418
<PackageReference Include="Microsoft.Extensions.Hosting" />
1519
<PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" />
1620
<PackageReference Include="Microsoft.NET.Test.Sdk" />
@@ -44,4 +48,7 @@
4448
<CustomToolNamespace>TIKSN.Tests.Licensing</CustomToolNamespace>
4549
</EmbeddedResource>
4650
</ItemGroup>
51+
<ItemGroup>
52+
<Protobuf Include="Licensing\schema.proto" GrpcServices="None" />
53+
</ItemGroup>
4754
</Project>

0 commit comments

Comments
 (0)