Skip to content

Commit bcc2fef

Browse files
Merge pull request #127 from nullinside-development-group/feat/logging
feat: logging
2 parents 235690a + 0ba8e11 commit bcc2fef

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
66
ARG BUILD_CONFIGURATION=Release
77
ARG TAG_VERSION
88
WORKDIR /src
9-
COPY ["src/TwitchStreamingTools/TwitchStreamingTools.csproj", "src/TwitchStreamingTools/"]
10-
RUN dotnet restore "src/TwitchStreamingTools/TwitchStreamingTools.csproj"
9+
COPY ["src/Nullinside.TwitchStreamingTools/Nullinside.TwitchStreamingTools.csproj", "src/TwitchStreamingTools/"]
10+
RUN dotnet restore "src/Nullinside.TwitchStreamingTools/Nullinside.TwitchStreamingTools.csproj"
1111
COPY src/ .
12-
WORKDIR "/src/TwitchStreamingTools"
13-
RUN dotnet build "TwitchStreamingTools.csproj" -p:Version="$TAG_VERSION" -c $BUILD_CONFIGURATION -o /app/build
12+
WORKDIR "/src/Nullinside.TwitchStreamingTools"
13+
RUN dotnet build "Nullinside.TwitchStreamingTools.csproj" -p:Version="$TAG_VERSION" -c $BUILD_CONFIGURATION -o /app/build
1414

1515
FROM build AS publish
1616
ARG BUILD_CONFIGURATION=Release
@@ -20,7 +20,7 @@ ARG DESCRIPTION
2020
RUN apt-get update && apt-get dist-upgrade -y && apt-get install zip jq -y
2121

2222
# Generate the executables
23-
RUN dotnet publish "TwitchStreamingTools.csproj" -p:Version="$TAG_VERSION" -c $BUILD_CONFIGURATION -o /app/publish/win-x64 -r win-x64 -p:PublishSingleFile=True -p:PublishReadyToRun=True --self-contained
23+
RUN dotnet publish "Nullinside.TwitchStreamingTools.csproj" -p:Version="$TAG_VERSION" -c $BUILD_CONFIGURATION -o /app/publish/win-x64 -r win-x64 -p:PublishSingleFile=True -p:PublishReadyToRun=True --self-contained
2424
RUN cd /app/publish/win-x64 && zip -r ../twitch-streaming-tools.zip *
2525

2626
# Create a tag and associate it with a release in GitHub. We don't need to check if it already exist, if it already

0 commit comments

Comments
 (0)