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

56 lines
1.5 KiB
XML
Raw Normal View History

2022-02-07 14:53:58 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2022-11-10 10:10:18 +00:00
<TargetFramework>net7.0</TargetFramework>
2022-03-05 08:20:05 +00:00
<ImplicitUsings>enable</ImplicitUsings>
</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>
2023-01-19 16:05:07 +00:00
<PackageReference Include="Grpc.Tools" Version="2.51.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>
<ItemGroup>
<Compile Update="Resources\WebHookResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>WebHookResource.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\WebHookResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>WebHookResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>