Selector/Selector.Web/Selector.Web.csproj

67 lines
2.8 KiB
XML
Raw Permalink Normal View History

2021-10-19 22:25:47 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2023-11-16 17:49:24 +00:00
<TargetFramework>net8.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" />
2023-01-22 10:28:52 +00:00
<ProjectReference Include="..\Selector.SignalR\Selector.SignalR.csproj">
<GlobalPropertiesToRemove></GlobalPropertiesToRemove>
</ProjectReference>
</ItemGroup>
<ItemGroup>
2024-07-20 11:53:31 +01:00
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.7" />
2021-10-24 00:23:45 +01:00
2024-07-20 11:53:31 +01:00
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.7" />
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
2024-07-20 11:53:31 +01:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.7">
2021-10-24 00:23:45 +01:00
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
2024-07-20 11:53:31 +01:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers" Version="8.0.7" />
2023-11-16 17:49:24 +00:00
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="8.0.0" />
2024-07-20 11:53:31 +01:00
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.3" />
2024-05-11 07:49:29 +01:00
<PackageReference Include="NLog" Version="5.3.2" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.11" />
<PackageReference Include="NLog.Web.AspNetCore" Version="5.3.11" />
2024-07-20 11:53:31 +01:00
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.7" />
2021-10-19 22:25:47 +01:00
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
2022-10-10 11:44:47 +01:00
<Folder Include="Past\" />
2023-01-21 16:17:46 +00:00
<Folder Include="Auth\" />
</ItemGroup>
<ItemGroup>
2022-10-10 11:44:47 +01:00
<None Remove="Past\" />
2023-01-21 16:17:46 +00:00
<None Remove="Microsoft.AspNetCore.Authentication.JwtBearer" />
<None Remove="Auth\" />
</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>