/
vladistoma
/
LazyLife
Обзор
Документация
Войти
/
vladistoma
/
LazyLife
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
FileStorageGrpc/FileStorageGrpc.csproj
54 строки
2 KB
Vladislav Sidorkin
Добавил рабочий эндпоинт по сохранению файлов в S3 Garage через GRPC
01 авг 2026, 18:59
01 авг 2026, 18:59
21777f3
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <TargetFramework>net10.0</TargetFramework> <Nullable>enable</Nullable> <ImplicitUsings>enable</ImplicitUsings> <InvariantGlobalization>true</InvariantGlobalization> <PublishAot>true</PublishAot> <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> </PropertyGroup> <ItemGroup> <Protobuf Include="Protos\FileStorage.proto" GrpcServices="Both" OutputPath="Services\Generated" /> </ItemGroup> <ItemGroup> <PackageReference Include="Google.Protobuf" Version="3.35.1" /> <PackageReference Include="Grpc.AspNetCore" Version="2.80.0" /> <PackageReference Include="Grpc.Net.Client" Version="2.80.0" /> <PackageReference Include="Grpc.Tools" Version="2.82.0"> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <PrivateAssets>all</PrivateAssets> </PackageReference> <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.10"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.3" /> </ItemGroup> <ItemGroup> <Content Include="..\.dockerignore"> <Link>.dockerignore</Link> </Content> <Content Update="appsettings.json"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </Content> <Content Update="appsettings.Development.json"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </Content> </ItemGroup> <ItemGroup> <Folder Include="Services\Generated\" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Lazylife.Application\Lazylife.Application.csproj" /> <ProjectReference Include="..\Lazylife.Domain\Lazylife.Domain.csproj" /> <ProjectReference Include="..\Lazylife.Infrastructure\Lazylife.Infrastructure.csproj" /> <ProjectReference Include="..\Lazylife.ServiceDefaults\Lazylife.ServiceDefaults.csproj" /> </ItemGroup> </Project>