DocSpace-buildtools/common/ASC.Webhooks.Core/ASC.Webhooks.Core.csproj

40 lines
969 B
XML
Raw Normal View History

2022-02-07 14:53:58 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<PropertyGroup>
<Nullable>disable</Nullable>
</PropertyGroup>
2021-08-26 18:43:41 +00:00
<ItemGroup>
<None Remove="proto\webhook_request.proto" />
2021-07-31 17:12:41 +00:00
</ItemGroup>
2021-08-26 18:43:41 +00:00
<ItemGroup>
2022-02-02 16:54:23 +00:00
<PackageReference Include="Grpc.Tools" Version="2.43.0">
2021-08-26 18:43:41 +00:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ASC.Core.Common\ASC.Core.Common.csproj" />
</ItemGroup>
2021-08-26 18:43:41 +00:00
<ItemGroup>
<Protobuf Include="proto\webhook_request.proto" />
2021-07-31 17:12:41 +00:00
</ItemGroup>
2022-02-07 14:53:58 +00:00
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>