Selector/Selector.Web/Selector.Web.csproj

69 lines
2.9 KiB
XML
Raw Normal View History

2021-10-19 22:25:47 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2022-11-09 22:41:58 +00:00
<TargetFramework>net7.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>
2023-05-14 12:06:14 +01:00
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.5" />
2021-10-24 00:23:45 +01:00
2023-05-14 12:06:14 +01:00
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="7.0.5" />
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
2023-05-14 12:06:14 +01:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.5">
2021-10-24 00:23:45 +01:00
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
2023-05-14 12:22:54 +01:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers" Version="7.0.5" />
2022-11-09 22:41:58 +00:00
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="7.0.0" />
2022-11-09 22:41:58 +00:00
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="7.0.0" />
2023-05-14 12:06:14 +01:00
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.6" />
<PackageReference Include="NLog" Version="5.1.4" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.3" />
<PackageReference Include="NLog.Web.AspNetCore" Version="5.2.3" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.5" />
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>