50 lines
2.8 KiB
XML
50 lines
2.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<SelfContained>true</SelfContained>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<InvariantGlobalization>false</InvariantGlobalization>
|
|
<PublishAot>false</PublishAot>
|
|
<IsTransformWebConfigDisabled>true</IsTransformWebConfigDisabled>
|
|
<UserSecretsId>b1687ae9-f7e6-45cf-bfbb-293f5d38ca14</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="C:\Users\ivanszabo\.nuget\packages\datatables.net-bs5\2.2.2\contentFiles\any\any\wwwroot\css\dataTables.bootstrap5.css" />
|
|
<Content Remove="C:\Users\ivanszabo\.nuget\packages\datatables.net-bs5\2.2.2\contentFiles\any\any\wwwroot\css\dataTables.bootstrap5.min.css" />
|
|
<Content Remove="C:\Users\ivanszabo\.nuget\packages\datatables.net-bs5\2.2.2\contentFiles\any\any\wwwroot\js\dataTables.bootstrap5.js" />
|
|
<Content Remove="C:\Users\ivanszabo\.nuget\packages\datatables.net-bs5\2.2.2\contentFiles\any\any\wwwroot\js\dataTables.bootstrap5.min.js" />
|
|
<Content Remove="C:\Users\ivanszabo\.nuget\packages\datatables.net\2.2.2\contentFiles\any\any\wwwroot\js\dataTables.js" />
|
|
<Content Remove="C:\Users\ivanszabo\.nuget\packages\datatables.net\2.2.2\contentFiles\any\any\wwwroot\js\dataTables.min.js" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentValidation" Version="11.11.0" />
|
|
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.0" />
|
|
<PackageReference Include="jquery" Version="3.7.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.14" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.11" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="Serilog" Version="4.2.0" />
|
|
<PackageReference Include="Serilog.AspNetCore" Version="8.0.3" />
|
|
<PackageReference Include="Serilog.Expressions" Version="5.0.0" />
|
|
<PackageReference Include="Serilog.Settings.Configuration" Version="9.0.0" />
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
|
|
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.7" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.2.0" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.6.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\WorkFlowCheck.Common\WorkFlowCheck.Common.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Update="appsettings.Development.json">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|