45 lines
1.9 KiB
XML
45 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'WebAPI' " />
|
|
<ItemGroup>
|
|
<PackageReference Include="AngouriMath" Version="1.4.0-preview.3" />
|
|
<PackageReference Include="CsvHelper" Version="33.0.1" />
|
|
<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="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">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<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" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="client_secrets.Development.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="dataProcessors\" />
|
|
<None Remove="dataImporters\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Controllers\QueueController.cs" />
|
|
</ItemGroup>
|
|
</Project>
|