Files
DiunaBI/WebAPI/DiunaBI-WebAPI.csproj

45 lines
1.9 KiB
XML
Raw Normal View History

2023-02-22 12:12:38 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2024-12-30 18:36:36 +01:00
<TargetFramework>net9.0</TargetFramework>
2023-02-22 12:12:38 +01:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
2023-06-22 13:27:52 +02:00
<PropertyGroup Condition=" '$(RunConfiguration)' == 'WebAPI' " />
2023-02-22 12:12:38 +01:00
<ItemGroup>
2024-05-24 20:38:32 +02:00
<PackageReference Include="AngouriMath" Version="1.4.0-preview.3" />
2024-12-30 18:38:21 +01:00
<PackageReference Include="CsvHelper" Version="33.0.1" />
2024-06-18 22:14:44 +02:00
<PackageReference Include="Google.Apis.Auth" Version="1.68.0" />
2024-12-30 18:38:21 +01:00
<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="9.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0">
2023-02-22 12:12:38 +01:00
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
2024-12-30 18:38:21 +01:00
<PackageReference Include="StackExchange.Redis" Version="2.8.24" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.2.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.0" />
2023-02-22 12:12:38 +01:00
</ItemGroup>
<ItemGroup>
<Content Update="client_secrets.Development.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
2023-09-17 13:00:24 +02:00
<ItemGroup>
<None Remove="dataProcessors\" />
2023-11-09 15:17:22 +01:00
<None Remove="dataImporters\" />
2023-09-17 13:00:24 +02:00
</ItemGroup>
2024-08-25 16:45:36 +02:00
<ItemGroup>
<Compile Remove="Controllers\QueueController.cs" />
</ItemGroup>
2023-02-22 12:12:38 +01:00
</Project>