Files
OCPP.Core/OCPP.Core.Server/OCPP.Core.Server.csproj
nutchayut 318d7884f2
All checks were successful
continuous-integration/drone/push Build is passing
b
2024-06-02 00:06:06 +07:00

51 lines
1.5 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>1.3.2</Version>
<Company>dallmann consulting GmbH</Company>
<Product>OCPP.Core</Product>
<Authors>Ulrich Dallmann</Authors>
<UserSecretsId>7dbe7593-03ad-445f-a179-41649d06f32e</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="logs\**" />
<Content Remove="logs\**" />
<Content Include="obj\rider.project.model.nuget.info" />
<EmbeddedResource Remove="logs\**" />
<None Remove="logs\**" />
</ItemGroup>
<ItemGroup>
<None Remove="localhost.pfx" />
</ItemGroup>
<ItemGroup>
<Content Include="localhost.pfx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Karambolo.Extensions.Logging.File" Version="3.5.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Newtonsoft.Json.Schema" Version="3.0.15" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OCPP.Core.Database\OCPP.Core.Database.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Schema20\" />
<Folder Include="Schema16\" />
</ItemGroup>
</Project>