2021-10-08 23:48:07 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2024-12-20 17:34:41 +00:00
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
2021-10-08 23:48:07 +01:00
|
|
|
<StartupObject>Selector.CLI.Program</StartupObject>
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-12-20 17:34:41 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0">
|
2022-02-13 19:33:17 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2024-12-20 17:34:41 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="9.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.0" />
|
|
|
|
<PackageReference Include="NLog" Version="5.3.4" />
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.15" />
|
|
|
|
<PackageReference Include="Quartz" Version="3.13.1" />
|
|
|
|
<PackageReference Include="Quartz.Extensions.Hosting" Version="3.13.1" />
|
|
|
|
<PackageReference Include="SpotifyAPI.Web" Version="7.2.1" />
|
2022-07-04 21:07:23 +01:00
|
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21308.1" />
|
|
|
|
<PackageReference Include="System.CommandLine.Hosting" Version="0.3.0-alpha.21216.1" />
|
2024-12-20 17:34:41 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers" Version="9.0.0" />
|
2021-10-08 23:48:07 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Selector\Selector.csproj" />
|
2021-10-18 21:48:02 +01:00
|
|
|
<ProjectReference Include="..\Selector.Model\Selector.Model.csproj" />
|
2021-10-23 12:49:42 +01:00
|
|
|
<ProjectReference Include="..\Selector.Cache\Selector.Cache.csproj" />
|
2022-10-07 18:29:33 +01:00
|
|
|
<ProjectReference Include="..\Selector.Data\Selector.Data.csproj" />
|
2021-12-19 18:44:03 +00:00
|
|
|
<ProjectReference Include="..\Selector.Event\Selector.Event.csproj" />
|
2021-10-08 23:48:07 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
2022-09-30 08:41:44 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<None Remove="Consumer\" />
|
|
|
|
<None Remove="Consumer\Factory\" />
|
|
|
|
</ItemGroup>
|
2021-10-11 01:06:43 +01:00
|
|
|
<ItemGroup>
|
2021-12-04 12:49:09 +00:00
|
|
|
<None Update="appsettings.Development.json" Condition="Exists('appsettings.Development.json')">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
2021-12-08 00:30:50 +00:00
|
|
|
<None Update="appsettings.Production.json" Condition="Exists('appsettings.Production.json')">
|
2021-10-12 23:29:05 +01:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
2021-10-11 01:06:43 +01:00
|
|
|
<None Update="appsettings.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
2021-10-11 18:17:36 +01:00
|
|
|
<None Update="nlog.config">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
2021-10-11 01:06:43 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
2022-09-30 08:41:44 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<Folder Include="Consumer\" />
|
|
|
|
<Folder Include="Consumer\Factory\" />
|
|
|
|
</ItemGroup>
|
2021-10-08 23:48:07 +01:00
|
|
|
</Project>
|