Files
DiunaBI/WebAPI/DiunaBI-WebAPI.csproj

40 lines
1.8 KiB
XML
Raw Normal View History

2023-02-22 12:12:38 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2024-06-18 22:14:44 +02:00
<TargetFramework>net8.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-06-18 22:14:44 +02:00
<PackageReference Include="CsvHelper" Version="33.0.0" />
<PackageReference Include="Google.Apis.Auth" Version="1.68.0" />
<PackageReference Include="Google.Apis.Drive.v3" Version="1.68.0.3428" />
<PackageReference Include="Google.Apis.Sheets.v4" Version="1.68.0.3421" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.6">
2023-02-22 12:12:38 +01:00
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
2024-06-18 22:14:44 +02:00
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.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>
2023-02-22 12:12:38 +01:00
</Project>