Selector/Selector.Web/Selector.Web.csproj

61 lines
2.4 KiB
XML
Raw Normal View History

2021-10-19 22:25:47 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>latest</LangVersion>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
</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" />
<ProjectReference Include="..\Selector.Event\Selector.Event.csproj" />
</ItemGroup>
<ItemGroup>
2022-06-23 19:44:44 +01:00
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.6" />
2021-10-24 00:23:45 +01:00
2022-06-23 19:44:44 +01:00
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.6" />
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-06-23 19:44:44 +01:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.6">
2021-10-24 00:23:45 +01:00
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="6.0.0" />
2022-06-23 19:44:44 +01:00
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.6" />
<PackageReference Include="NLog" Version="5.0.1" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.0.0" />
<PackageReference Include="NLog.Web.AspNetCore" Version="5.0.0" />
2021-10-19 22:25:47 +01:00
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
<Folder Include="NowPlaying\" />
</ItemGroup>
<ItemGroup>
<None Remove="NowPlaying\" />
</ItemGroup>
2021-10-23 22:16:37 +01:00
<ItemGroup>
<None Update="appsettings.Development.json" Condition="Exists('appsettings.Development.json')">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<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>
</Project>