2025-11-18 20:38:35 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
<PropertyGroup>
|
2025-11-19 12:33:37 +01:00
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
2025-11-18 20:38:35 +01:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<RootNamespace>DiunaBI.WebAPI</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Google.Cloud.Firestore" Version="3.4.0" />
|
2025-11-19 12:33:37 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />
|
2025-11-18 20:38:35 +01:00
|
|
|
<PackageReference Include="Google.Apis.Auth" Version="1.68.0" />
|
|
|
|
|
<PackageReference Include="Google.Apis.Drive.v3" Version="1.68.0.3627" />
|
|
|
|
|
<PackageReference Include="Google.Apis.Sheets.v4" Version="1.68.0.3624" />
|
2025-11-19 12:33:37 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0">
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2025-11-18 20:38:35 +01:00
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Enrichers.Environment" Version="3.0.1" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Seq" Version="9.0.0" />
|
2025-11-19 12:33:37 +01:00
|
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="10.0.0" />
|
2025-11-18 20:38:35 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\DiunaBI.Infrastructure\DiunaBI.Infrastructure.csproj" />
|
|
|
|
|
<ProjectReference Include="..\DiunaBI.Application\DiunaBI.Application.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Update="client_secrets.Development.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="CopyPlugins" AfterTargets="Build">
|
|
|
|
|
<MSBuild Projects="../DiunaBI.Plugins.Morska/DiunaBI.Plugins.Morska.csproj" Properties="Configuration=$(Configuration);TargetFramework=$(TargetFramework)" />
|
2025-12-03 13:33:38 +01:00
|
|
|
<MSBuild Projects="../DiunaBI.Plugins.PedrolloPL/DiunaBI.Plugins.PedrolloPL.csproj" Properties="Configuration=$(Configuration);TargetFramework=$(TargetFramework)" />
|
|
|
|
|
|
2025-11-18 20:38:35 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PluginFiles Include="../DiunaBI.Plugins.Morska/bin/$(Configuration)/$(TargetFramework)/DiunaBI.Plugins.Morska.dll" />
|
2025-12-03 13:33:38 +01:00
|
|
|
<PluginFiles Include="../DiunaBI.Plugins.PedrolloPL/bin/$(Configuration)/$(TargetFramework)/DiunaBI.Plugins.PedrolloPL.dll" />
|
2025-11-18 20:38:35 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
<MakeDir Directories="$(OutputPath)Plugins" />
|
|
|
|
|
<Copy SourceFiles="@(PluginFiles)" DestinationFolder="$(OutputPath)Plugins" />
|
|
|
|
|
</Target>
|
2025-05-31 19:25:49 +02:00
|
|
|
</Project>
|