-
Notifications
You must be signed in to change notification settings - Fork 0
/
Emif.Adapter.Schema.csproj
33 lines (27 loc) · 1.06 KB
/
Emif.Adapter.Schema.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<PackageId>Emif.Adapter.Schema</PackageId>
<Authors>Elvia AS</Authors>
<Description>Message schema for communication with Elhub Adapter</Description>
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
<RootNamespace>Emif.Adapter.Schema</RootNamespace>
<AssemblyName>Emif.Adapter.Schema</AssemblyName>
</PropertyGroup>
<PropertyGroup>
<NoWarn>CS8981</NoWarn> <!-- needed because of code generation from protoc-->
<NoWarn>CS1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.28.3" />
<PackageReference Include="Grpc.Tools" Version="2.67.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Emif\Adapter\Schema\" />
</ItemGroup>
</Project>