2025-11-18 20:38:35 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<RootNamespace>DiunaBI.WebAPI</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Google.Cloud.Firestore" Version="3.4.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.0" />
|
|
|
|
|
<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" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.0" />
|
|
|
|
|
<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" />
|
|
|
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
|
|
|
|
|
</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)" />
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PluginFiles Include="../DiunaBI.Plugins.Morska/bin/$(Configuration)/$(TargetFramework)/DiunaBI.Plugins.Morska.dll" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<MakeDir Directories="$(OutputPath)Plugins" />
|
|
|
|
|
<Copy SourceFiles="@(PluginFiles)" DestinationFolder="$(OutputPath)Plugins" />
|
|
|
|
|
</Target>
|
2025-05-31 19:25:49 +02:00
|
|
|
</Project>
|