Unverified Commit 8fb4d230 authored by Marius Göcke's avatar Marius Göcke
Browse files

update

parent 6fec94e6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ services:
    env_file: Variables.env
    image: simpleocr:1.5.2
    environment:
      - EnforceVerbose
      - EnforceVerbose=true
    ports:
    - 443:443
    volumes:
+2 −2
Original line number Diff line number Diff line
@@ -28,8 +28,8 @@ if [[ -n "${InitialEnableEndpointMetricsValue}" ]]; then
    argument+=" --InitialEnableEndpointMetricsValue $InitialEnableEndpointMetricsValue"
fi

if [[ -n "${EnforceVerbose}" ]]; then
    argument+=" --EnforceVerbose"
if [[ "${EnforceVerbose}" == "true" ]]; then
    argument+=" --EnforceVerbose true"
fi

{ cd /Workspace/Application/Backend && dotnet ./SimpleOCRService.dll $argument; } &
+3 −4
Original line number Diff line number Diff line
@@ -29,8 +29,7 @@
        <SignAssembly>true</SignAssembly>
        <AssemblyOriginatorKeyFile>..\..\Other\Resources\PublicKeys\StronglyNamedKey\SimpleOCRPublicKey.snk</AssemblyOriginatorKeyFile>
        <DelaySign>true</DelaySign>
        <NoWarn>
            1701;1702;CA1822;CS1591;CS1573;IDE0045;IDE0046;IDE0054;IDE0058;IDE0074;IDE0090;CA1859</NoWarn>
        <NoWarn>1701;1702;CA1822;CS1591;CS1573;IDE0045;IDE0046;IDE0054;IDE0058;IDE0074;IDE0090;CA1859</NoWarn>
        <WarningsAsErrors>NU1605</WarningsAsErrors>
        <ErrorLog>..\Other\Resources\CodeAnalysisResult\SimpleOCRCLI.sarif</ErrorLog>
        <OutputType>Exe</OutputType>
@@ -63,7 +62,7 @@
        <PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
        <PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.5" />
        <PackageReference Include="CommandLineParser" Version="2.9.1" />
        <PackageReference Include="GRYLibrary" Version="2.0.12" />
        <PackageReference Include="GRYLibrary" Version="2.0.14" />
        <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.5" />
        <PackageReference Include="Tesseract" Version="5.2.0" />
        <PackageReference Include="Magick.NET-Q16-AnyCPU" Version="14.12.0" />
+6 −5
Original line number Diff line number Diff line
@@ -74,6 +74,7 @@
        <PackageReference Include="Tesseract" Version="5.2.0" />
        <PackageReference Include="Magick.NET-Q16-AnyCPU" Version="14.12.0" />
        <PackageReference Include="Magick.NET.Core" Version="14.12.0" />
        <PackageReference Include="GRYLibrary" Version="2.0.14" />
        <Reference Include="SimpleOCRLibrary">
            <HintPath>..\Other\Resources\DependentCodeUnits\SimpleOCRLibrary\BuildResult_DotNet_$(NETCoreSdkRuntimeIdentifier)\SimpleOCRLibrary.dll</HintPath>
        </Reference>
+1 −1
Original line number Diff line number Diff line
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="96" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="96" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path fill="#555" d="M0 0h61v20H0z"/><path fill="#0374B5" d="M61 0h35v20H61z"/><path fill="url(#b)" d="M0 0h96v20H0z"/></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110"> <text x="315" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="510">coverage</text><text x="315" y="140" transform="scale(.1)" textLength="510">coverage</text><text x="775" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="250">41%</text><text x="775" y="140" transform="scale(.1)" textLength="250">41%</text></g></svg>
 No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="96" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="96" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path fill="#555" d="M0 0h61v20H0z"/><path fill="#0374B5" d="M61 0h35v20H61z"/><path fill="url(#b)" d="M0 0h96v20H0z"/></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110"> <text x="315" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="510">coverage</text><text x="315" y="140" transform="scale(.1)" textLength="510">coverage</text><text x="775" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="250">40%</text><text x="775" y="140" transform="scale(.1)" textLength="250">40%</text></g></svg>
 No newline at end of file
Loading