2021-10-19 22:25:47 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2021-10-18 21:48:02 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-11-09 22:41:58 +00:00
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2021-10-18 21:48:02 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2021-11-25 18:26:20 +00:00
|
|
|
|
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
|
2021-10-18 21:48:02 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Selector\Selector.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Selector.Model\Selector.Model.csproj" />
|
2021-10-23 12:49:42 +01:00
|
|
|
|
<ProjectReference Include="..\Selector.Cache\Selector.Cache.csproj" />
|
2021-12-19 18:44:03 +00:00
|
|
|
|
<ProjectReference Include="..\Selector.Event\Selector.Event.csproj" />
|
2021-10-18 21:48:02 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-10-18 22:11:31 +01:00
|
|
|
|
<ItemGroup>
|
2022-11-09 22:41:58 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.0" />
|
2021-10-24 00:23:45 +01:00
|
|
|
|
|
2022-11-09 22:41:58 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="7.0.0" />
|
2021-10-19 22:25:47 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
|
2021-10-24 00:23:45 +01:00
|
|
|
|
|
2022-11-09 22:41:58 +00:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.0">
|
2021-10-24 00:23:45 +01:00
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2021-12-08 00:01:18 +00:00
|
|
|
|
|
2022-11-09 22:41:58 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="7.0.0" />
|
2021-12-08 00:01:18 +00:00
|
|
|
|
|
2022-11-09 22:41:58 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.0" />
|
2022-11-15 19:07:15 +00:00
|
|
|
|
<PackageReference Include="NLog" Version="5.0.5" />
|
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.1.0" />
|
|
|
|
|
<PackageReference Include="NLog.Web.AspNetCore" Version="5.1.5" />
|
2021-10-19 22:25:47 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="wwwroot\" />
|
2022-06-02 00:53:57 +01:00
|
|
|
|
<Folder Include="NowPlaying\" />
|
2022-10-10 11:44:47 +01:00
|
|
|
|
<Folder Include="Past\" />
|
2021-10-18 22:11:31 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-06-02 00:53:57 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="NowPlaying\" />
|
2022-10-10 11:44:47 +01:00
|
|
|
|
<None Remove="Past\" />
|
2022-06-02 00:53:57 +01:00
|
|
|
|
</ItemGroup>
|
2021-10-23 22:16:37 +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-23 22:16:37 +01:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="nlog.config">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-10-18 21:48:02 +01:00
|
|
|
|
</Project>
|