small fix

This commit is contained in:
José Henrique Ivanchechen 2023-08-23 11:16:36 -03:00
parent 258f3a0243
commit 09c7345e68
2 changed files with 2 additions and 2 deletions

View File

@ -17,4 +17,4 @@ WORKDIR /App
COPY --from=build-env /App/out . COPY --from=build-env /App/out .
ENTRYPOINT ["dotnet", "TCC.APP.dll"] ENTRYPOINT ["dotnet", "/App/TCC.APP.dll"]

View File

@ -5,7 +5,7 @@
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>tcc_app</RootNamespace> <RootNamespace>tcc_app</RootNamespace>
<PlatformTarget>x64</PlatformTarget> <PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup> </PropertyGroup>