@@ -18,4 +18,8 @@
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Include="obj\rider.project.model.nuget.info" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Reflection.NullabilityInfoContext.IsSupported": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("dallmann consulting GmbH")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.3.2.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.3.2+88ddddd7c28044fdad5515c33a8fbef41a5387c4")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.3.2+fc38961b62d48b98657acc81848beb625ce56692")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("OCPP.Core")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("OCPP.Core.Database")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.3.2.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
f0dcad204937d3fd26ede0d679763b6086f8bc46e534e366487a8bb7789d3eeb
|
||||
4948cd7ca0c3fd6918148c915b0908e25f0d1dd0f003183492e0454eed097d03
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
5a2adb8ea7cf59aa189c5a32ae8131885cbe33eefdc6f63817d77a651b063dd7
|
||||
@@ -0,0 +1,14 @@
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/bin/Debug/net8.0/OCPP.Core.Database.deps.json
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/bin/Debug/net8.0/OCPP.Core.Database.runtimeconfig.json
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/bin/Debug/net8.0/OCPP.Core.Database.dll
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/bin/Debug/net8.0/OCPP.Core.Database.pdb
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/obj/Debug/net8.0/OCPP.Core.Database.csproj.AssemblyReference.cache
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/obj/Debug/net8.0/OCPP.Core.Database.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/obj/Debug/net8.0/OCPP.Core.Database.AssemblyInfoInputs.cache
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/obj/Debug/net8.0/OCPP.Core.Database.AssemblyInfo.cs
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/obj/Debug/net8.0/OCPP.Core.Database.csproj.CoreCompileInputs.cache
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/obj/Debug/net8.0/OCPP.Core.Database.dll
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/obj/Debug/net8.0/refint/OCPP.Core.Database.dll
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/obj/Debug/net8.0/OCPP.Core.Database.pdb
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/obj/Debug/net8.0/OCPP.Core.Database.genruntimeconfig.cache
|
||||
/Users/nutchayut/OCPP.Core/OCPP.Core.Database/obj/Debug/net8.0/ref/OCPP.Core.Database.dll
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
5fd2adab629a63ef617a4291d238a5770737b262ae22539996a8dd3369faba78
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
17170907493933033
|
||||
@@ -1,7 +1,7 @@
|
||||
FROM registry.71dev.com/dotnetsdk:8.0 as build-env
|
||||
WORKDIR /source
|
||||
COPY . .
|
||||
RUN dotnet publish OCPP.Core.Server/OCPP.Core.Server.csproj -o /publish
|
||||
RUN dotnet publish OCPP.Core.Management/OCPP.Core.Management.csproj -o /publish
|
||||
#RUN dotnet build
|
||||
#RUN dotnet publish -o /publish --configuration Release ;
|
||||
# Publish Stage
|
||||
@@ -9,4 +9,4 @@ FROM registry.71dev.com/dotnetaspnet:8.0
|
||||
WORKDIR /app
|
||||
COPY --from=build-env /publish .
|
||||
ENV ASPNETCORE_URLS http://*:8081
|
||||
ENTRYPOINT ["dotnet", "OCPP.Core.Server.dll"]
|
||||
ENTRYPOINT ["dotnet", "OCPP.Core.Management.dll"]
|
||||
@@ -0,0 +1,2 @@
|
||||
warn: Microsoft.AspNetCore.Server.Kestrel[0] @ 2024-06-01T18:31:32.2089150+07:00
|
||||
Overriding address(es) 'http://localhost:8082'. Binding to endpoints defined via IConfiguration and/or UseKestrel() instead.
|
||||
@@ -12,6 +12,7 @@
|
||||
<ItemGroup>
|
||||
<Compile Remove="Logs\**" />
|
||||
<Content Remove="Logs\**" />
|
||||
<Content Include="obj\rider.project.model.nuget.info" />
|
||||
<EmbeddedResource Remove="Logs\**" />
|
||||
<None Remove="Logs\**" />
|
||||
</ItemGroup>
|
||||
|
||||
@@ -31,10 +31,12 @@
|
||||
|
||||
"ConnectionStrings": {
|
||||
//"SQLite": "Filename=.\\..\\SQLite\\OCPP.Core.sqlite;"
|
||||
"SqlServer": "Server=.;Database=OCPP.Core;Trusted_Connection=True;Encrypt=false;TrustServerCertificate=false"
|
||||
//"SqlServer": "Server=.;Database=OCPP.Core;Trusted_Connection=True;Encrypt=false;TrustServerCertificate=false",
|
||||
"SqlServer": "Data Source=202.129.205.201,31455;Initial Catalog=OCPP.Core;User ID=dev;Password=password@1;TrustServerCertificate=true;"
|
||||
},
|
||||
|
||||
"ServerApiUrl": "http://localhost:8081/API",
|
||||
//"ServerApiUrl": "http://localhost:8081/API",
|
||||
"ServerApiUrl": "http://server-ocpp-service.ocpp/API",
|
||||
"ApiKey": "36029A5F-B736-4DA9-AE46-D66847C9062C",
|
||||
|
||||
"Users": [
|
||||
|
||||
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "8.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Reflection.NullabilityInfoContext.IsSupported": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"ContentRoots":["/Users/nutchayut/OCPP.Core/OCPP.Core.Management/wwwroot/"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap-dialog":{"Children":{"bootstrap-dialog.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap-dialog/bootstrap-dialog.min.css"},"Patterns":null},"bootstrap-dialog.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap-dialog/bootstrap-dialog.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"Logging": {
|
||||
"File": {
|
||||
"BasePath": "Logs",
|
||||
"FileAccessMode": "KeepOpenAndAutoFlush",
|
||||
"FileEncodingName": "utf-8",
|
||||
"DateFormat": "yyyyMMdd",
|
||||
"CounterFormat": "000",
|
||||
"MaxFileSize": 1048576,
|
||||
"LogLevel": {
|
||||
"OCPP": "Trace",
|
||||
"Microsoft": "Warning",
|
||||
"Default": "Debug"
|
||||
},
|
||||
"IncludeScopes": false,
|
||||
"MaxQueueSize": 10,
|
||||
"Files": [
|
||||
{
|
||||
"Path": "OCPP.Core.Management-<counter>.log",
|
||||
"CounterFormat": "00"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
"LogLevel": {
|
||||
"Default": "Information"
|
||||
},
|
||||
|
||||
"AllowedHosts": "*",
|
||||
|
||||
"ConnectionStrings": {
|
||||
//"SQLite": "Filename=.\\..\\SQLite\\OCPP.Core.sqlite;"
|
||||
"SqlServer": "Server=.;Database=OCPP.Core;Trusted_Connection=True;Encrypt=false;TrustServerCertificate=false"
|
||||
},
|
||||
|
||||
"ServerApiUrl": "http://localhost:8081/API",
|
||||
"ApiKey": "36029A5F-B736-4DA9-AE46-D66847C9062C",
|
||||
|
||||
"Users": [
|
||||
{
|
||||
"Username": "admin",
|
||||
"Password": "t3st",
|
||||
"Administrator": true
|
||||
},
|
||||
{
|
||||
"Username": "user",
|
||||
"Password": "t3st",
|
||||
"Administrator": false
|
||||
}
|
||||
],
|
||||
|
||||
"Kestrel": {
|
||||
"Endpoints": {
|
||||
"Http": {
|
||||
"Url": "http://localhost:8082"
|
||||
},
|
||||
"HttpsInlineCertFile": {
|
||||
"Url": "https://localhost:8092",
|
||||
"Certificate": {
|
||||
"Path": "localhost.pfx",
|
||||
"Password": "OCPP.Core"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
@@ -14,7 +14,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("dallmann consulting GmbH")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.3.2.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.3.2+88ddddd7c28044fdad5515c33a8fbef41a5387c4")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.3.2+fc38961b62d48b98657acc81848beb625ce56692")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("OCPP.Core")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("OCPP.Core.Management")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.3.2.0")]
|
||||
|
||||
@@ -1 +1 @@
|
||||
8a23988c6a892ff0d7ca584ecafd18988537390493f966a7777d98e91f2575e3
|
||||
ec8730582114481ba95afca3f7c6d409282650a7d1eb4ed7cf74d0cf01c5f0b7
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user