70 lines
2.9 KiB
XML
70 lines
2.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Selector\Selector.csproj" />
|
|
<ProjectReference Include="..\Selector.Model\Selector.Model.csproj" />
|
|
<ProjectReference Include="..\Selector.Cache\Selector.Cache.csproj" />
|
|
<ProjectReference Include="..\Selector.Event\Selector.Event.csproj" />
|
|
<ProjectReference Include="..\Selector.SignalR\Selector.SignalR.csproj">
|
|
<GlobalPropertiesToRemove></GlobalPropertiesToRemove>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.1" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="7.0.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.1">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="7.0.0" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.1" />
|
|
<PackageReference Include="NLog" Version="5.1.1" />
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.1" />
|
|
<PackageReference Include="NLog.Web.AspNetCore" Version="5.2.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\" />
|
|
<Folder Include="NowPlaying\" />
|
|
<Folder Include="Past\" />
|
|
<Folder Include="Auth\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="NowPlaying\" />
|
|
<None Remove="Past\" />
|
|
<None Remove="Microsoft.AspNetCore.Authentication.JwtBearer" />
|
|
<None Remove="Auth\" />
|
|
</ItemGroup>
|
|
<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')">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="nlog.config">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|