Files
DiunaBI/WebAPI/DiunaBI-WebAPI.csproj

34 lines
1.5 KiB
XML
Raw Normal View History

2022-12-09 00:14:05 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2022-12-06 12:27:09 +01:00
<PropertyGroup>
2022-12-09 00:14:05 +01:00
<TargetFramework>net7.0</TargetFramework>
2022-12-06 12:27:09 +01:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
2022-12-19 18:36:57 +01:00
<PackageReference Include="CsvHelper" Version="30.0.1" />
2022-12-06 12:27:09 +01:00
<PackageReference Include="Google.Apis.Auth" Version="1.58.0" />
2022-12-22 15:12:19 +01:00
<PackageReference Include="Google.Apis.Drive.v3" Version="1.58.0.2859" />
2022-12-21 22:15:17 +01:00
<PackageReference Include="Google.Apis.Sheets.v4" Version="1.58.0.2826" />
2022-12-09 00:14:05 +01:00
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.0" />
2022-12-06 12:27:09 +01:00
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
</ItemGroup>
2023-01-07 12:53:04 +01:00
<ItemGroup>
<Content Update="client_secrets.Development.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
2022-12-06 12:27:09 +01:00
</Project>