This commit is contained in:
nutchayut
2024-05-31 00:38:31 +07:00
commit 88ddddd7c2
234 changed files with 37557 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
<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\**" />
<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>