mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-08 10:44:20 -04:00
Restore custom out path needed for csharp lsp to work
This commit is contained in:
parent
d46e6eda64
commit
fb4424fb6b
@ -19,7 +19,10 @@ RUN dotnet restore -a $TARGETARCH
|
|||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN dotnet build
|
RUN dotnet build
|
||||||
RUN dotnet ef migrations bundle --no-build --self-contained -r linux-${TARGETARCH} -f -o /app/migrate -p src/Kyoo.Postgresql --verbose
|
RUN dotnet ef migrations bundle \
|
||||||
|
--msbuildprojectextensionspath out/obj/Kyoo.Postgresql \
|
||||||
|
--no-build --self-contained -r linux-${TARGETARCH} -f \
|
||||||
|
-o /app/migrate -p src/Kyoo.Postgresql --verbose
|
||||||
|
|
||||||
FROM mcr.microsoft.com/dotnet/runtime-deps:8.0
|
FROM mcr.microsoft.com/dotnet/runtime-deps:8.0
|
||||||
COPY --from=builder /app/migrate /app/migrate
|
COPY --from=builder /app/migrate /app/migrate
|
||||||
|
@ -28,6 +28,11 @@
|
|||||||
<CheckCodingStyle Condition="$(CheckCodingStyle) == ''">true</CheckCodingStyle>
|
<CheckCodingStyle Condition="$(CheckCodingStyle) == ''">true</CheckCodingStyle>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<BaseIntermediateOutputPath>$(MsBuildThisFileDirectory)/../out/obj/$(MSBuildProjectName)</BaseIntermediateOutputPath>
|
||||||
|
<BaseOutputPath>$(MsBuildThisFileDirectory)/../out/bin/$(MSBuildProjectName)</BaseOutputPath>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="$(CheckCodingStyle) == true">
|
<ItemGroup Condition="$(CheckCodingStyle) == true">
|
||||||
<None Include="$(MSBuildThisFileDirectory)../.editorconfig" Link=".editorconfig" Visible="false" />
|
<None Include="$(MSBuildThisFileDirectory)../.editorconfig" Link=".editorconfig" Visible="false" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user